上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 35 下一页
2015年9月25日
摘要: 三字母序列 阅读全文
posted @ 2015-09-25 14:23 Just_Do 阅读(428) 评论(0) 推荐(0)
摘要: 1、用文本编辑器编辑代码如下,然后保存为hello.c文件#include int main(void){ printf("hello world"); return 0;}2、编译: 用命令gcc hello.c -o helle 编译后会出现一个hello.exe的可执行文件,通... 阅读全文
posted @ 2015-09-25 14:18 Just_Do 阅读(710) 评论(0) 推荐(0)
摘要: 1简介2简单编译2.1预处理2.2编译为汇编代码(Compilation)2.3汇编(Assembly)2.4连接(Linking)3多个程序文件的编译4检错5库文件连接5.1编译成可执行文件5.2链接5.3强制链接时使用静态链接库1简介GCC 的意思也只是 GNU C Compiler 而已。经过... 阅读全文
posted @ 2015-09-25 14:04 Just_Do 阅读(229) 评论(0) 推荐(0)
2015年9月23日
摘要: 一、前面的感慨以前也陆陆续续试过CSS3的一些特性,文字投影,多边框等。但都是试试而已,知道有这么回事。今天,见到了一个新玩意,transition,认认真真的试了一下,经过,我懵了,我呆了,我傻了,半天说不出话来,这…这…unbelievable,amazing,太神奇了,太不可思议了,几行简单的... 阅读全文
posted @ 2015-09-23 10:12 Just_Do 阅读(911) 评论(0) 推荐(0)
摘要: -moz代表firefox浏览器私有属性-ms代表IE浏览器私有属性-webkit代表chrome、safari私有属性私有属性例如:设置div圆角的大小-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px; 阅读全文
posted @ 2015-09-23 10:07 Just_Do 阅读(481) 评论(0) 推荐(0)
2015年8月6日
摘要: TelnetSever.cs 1 public class TelnetServer : AppServer 2 { 3 protected override bool Setup(IRootConfig rootConfig, IServerConfig confi... 阅读全文
posted @ 2015-08-06 11:56 Just_Do 阅读(395) 评论(0) 推荐(0)
摘要: TelnetSession.cs 1 public class TelnetSession:AppSession 2 { 3 protected override void OnSessionStarted() 4 { 5 S... 阅读全文
posted @ 2015-08-06 11:31 Just_Do 阅读(662) 评论(0) 推荐(0)
摘要: 要点:1.请求类必须继承CommandBase 2.请求类类名为请求对象中的Key值,大小写可以不区分 3.类必须用public修饰,否则无法识别该请求,提示为无效请求 4.不能再调用NewRequestReceived事件代码实现:Progra... 阅读全文
posted @ 2015-08-06 11:04 Just_Do 阅读(419) 评论(0) 推荐(0)
摘要: step1.先加入库SuperSocket.Common.dll, SuperSocket.SocketBase.dll, SuperSocket.SocketEngine.dll,log4net.dll,System.Threading.dll。同时还需引入NET中的System.Configur... 阅读全文
posted @ 2015-08-06 10:59 Just_Do 阅读(1484) 评论(0) 推荐(0)
2015年7月21日
摘要: 1、HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"NoDriveTypeAutoRun"=hex:b5" 取消自动播放资料光盘为"b5", 自动播放为"95""NoRecentDocsM... 阅读全文
posted @ 2015-07-21 11:20 Just_Do 阅读(921) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 35 下一页