码迷,mamicode.com
首页 >  
搜索关键字:comment    ( 4550个结果
css的img移上去边框效果
.v_comment img{ height:36px; height:36px; float:left; padding:1px; margin:2px; border: 1px solid #ddd; }.v_comment img:hover{border: 1px solid #ccc; -...
分类:Web程序   时间:2014-05-27 01:31:52    阅读次数:264
UDP发送和接收
MainRecv.cpp#include #include #include #pragma comment(lib,"ws2_32.lib")#define RECV_IP "127.0.0.1"#define RECV_PORT 8899#define LEN_RECV_BUF 2048int ...
分类:其他好文   时间:2014-05-26 12:07:41    阅读次数:276
windows服务控制(开启/停止已有服务)
#include "stdafx.h"#include #include #include #include #pragma comment(lib, "advapi32.lib")TCHAR szCommand[10];TCHAR szSvcName[80];SC_HANDLE schSCMana...
分类:Windows程序   时间:2014-05-26 07:58:05    阅读次数:420
package-info.java
问题:看开源项目发现这个package-info.java文件有些特殊,从名字上面也可以猜出这个类是与package有关的。具体是怎么回事呢?:就是记录包的信息To create a package comment file, you have a choice of two files to pl...
分类:编程语言   时间:2014-05-23 09:39:01    阅读次数:328
mysql删除字段语句
#删除字段 ALTER TABLE evan DROP COLUMN age #添加字段 ALTER TABLE evan ADD COLUMN age2 VARCHAR(20) COMMENT '年龄' #修改字段注释 ALTER TABLE evan MODIFY COLUMN age2 VARCHAR(20) COMMENT '年龄2' #修改字段名字 ALTER TABLE evan...
分类:数据库   时间:2014-05-22 23:37:33    阅读次数:407
2014年百度之星资格赛第二题Disk Schedule
其实我觉得这题可以用费用流的,可是光建图就超时了。。。不科学啊。。。因为边太多了,不然一定能过的,最后想啊想,还是用dp吧。。。。 居然想到一种一维dp。。。。我也不知道我怎么想的,反正就是ac了 //#pragma comment(linker, "/STACK:102400000,102400000") #include #include #include #include #includ...
分类:其他好文   时间:2014-05-22 13:20:14    阅读次数:286
光线追踪
#include #include const int GRID_WIDTH = 1024;const int GRID_HEIGHT = 800;#pragma comment(lib, "osgd.lib")#pragma comment(lib, "osgViewerd.lib")#pragm...
分类:其他好文   时间:2014-05-21 20:31:39    阅读次数:555
Winsock 示例
#include "stdafx.h"#include #include #pragma comment(lib,"ws2_32.lib")using namespace std;int main(int argc, char* argv[]){ WSADATA wsaData; int...
分类:Windows程序   时间:2014-05-21 19:01:01    阅读次数:476
windows系统调用 进程快照
1 #include "windows.h" 2 #include "tlhelp32.h" 3 #include "iostream" 4 using namespace std; 5 6 #pragma comment(lib,"kernel32.lib") 7 8 DWORD GetKe...
分类:Windows程序   时间:2014-05-18 20:01:58    阅读次数:535
ubuntu 12.04 eclipse增加桌面快捷方式
1、创建桌面启动器(编辑/usr/share/applications/eclipse.desktop) 1 [Desktop Entry] 2 Encoding=UTF-8 3 Name=eclipse 4 Comment=Eclipse IDE 5 Exec=/opt/eclipse/eclip...
分类:系统相关   时间:2014-05-16 00:50:16    阅读次数:415
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!