摘要:
软件使用[20] 阅读全文
摘要:
1 -- 服务自动的原理 2 -- 命令chkconfig使用方法 chkconfig是Linux系统中基于命令行的服务管理工具,其用途是启用和禁用系统服务。 chkconfig --list [name] chkconfig --add name chkconfig --del name chkconfig [--level levels] name chkconfig [--level levels] name 阅读全文
摘要:
1 -- GCC的__attribute__机制 __attribute__可以设置如下属性: 函数属性 -- Function Attribute 变量属性 -- Variable Attribute 类型属性 -- Type Attribute http://www.luobo.cc/read.php?tid=4813233 阅读全文
摘要:
差点被误导了 重载的是转换运算符 对于类X的成员函数X::operator T() T是类型名 定义了一个X到T的转换 对于 operator bool()const {return p;} Handle h; bool b=h;//在这里调用 阅读全文
摘要:
1 -- V15.0.0的破解方法下面的文字转自Zhiwei.Li, 这哥们还是蛮强悍蛮无私的...... Linux版本 080784CD mov eax, esi 改成 xor eax, eax 也就是 文件 slickedit/bin/vs 的偏移 0×304CD 处 的 89 F0 改成 33 C0 windows版本 0040F750 mov eax, ebp 改成 xor eax,eax 也就是 文件 SlickEditV15.0.0\win\vs.exe 的偏移0xEB50 处 的 8B C5 改成 33 C0 P.S. 如果你手头没有方便的工具,那么别删除老版本的Sl 阅读全文
摘要:
#include <iostream>int testString(){ char szBuff[1024]; memset(szBuff, 0, sizeof(szBuff)); snprintf(szBuff, sizeof(szBuff), "%s", "abcdefg01\023\0456\r78\n9"); int * parr = new int[20]; for (int i = 0; i < 20; i++) { parr[i] = i; parr[i] = i + 1; parr[i] = i + 2; } print 阅读全文