转载:http://www.th7.cn/Program/c/201303/127343.shtml原因是Visual C++ 2012 使用了更加安全的 run-time library routines 。新的Security CRT functions(就是那些带有“_s”后缀的函数),请参见...
分类:
其他好文 时间:
2014-11-28 14:08:36
阅读次数:
291
延长zencart1.5.x后台的15分钟登录时间打开includes\functions\sessions.phpif (IS_ADMIN_FLAG === true) { if (!$SESS_LIFE = (SESSION_TIMEOUT_ADMIN > 900 ? 900 : SESSIO....
分类:
其他好文 时间:
2014-11-27 14:17:11
阅读次数:
135
ggregate Functions(Transact-SQL)聚合函数AVG:求平均分COUNT:计算个数MAX:求最大值MIN:求最小值SUM:求和求平均身高select AVG (shengao) from student as:添加的列名select AVG (shengao) as 平均身...
分类:
其他好文 时间:
2014-11-27 12:26:09
阅读次数:
420
一、聚合函数(Aggregate Functions)AVG:求平均 count:计算个数 MAX:最大值MIN:最小值SUM:求和例:select count(*) as 人数 from student--as 人数,列名显示为“人数”select(select count (*) from st...
分类:
其他好文 时间:
2014-11-25 22:46:44
阅读次数:
178
下面是 Point class 的一个加法运算符的可能实现内容:class Point{ friend Point opsrator+(const Point&, const Point&);};Pointopsrator+(const Point &lhs, const Poi...
分类:
其他好文 时间:
2014-11-25 15:53:07
阅读次数:
234
nonmember friend 或 nonstatic member 或 static member 函数都会被转化为相同的形式, 因此三者的效率完全相同.另外, inline member function 的效率一直是最高的(前提是简单操作), 优化后的效率更是高, 这是因为编译器会将被视为不...
分类:
其他好文 时间:
2014-11-24 22:20:10
阅读次数:
241
我们知道Start() Update() 等之类的 事件函数 在Unity 主线程中是依次调用的。至于调用的顺序可以查手册。由此继承机制也会发生一些改变。测试一:public class MyTest2 : MonoBehaviour{ void Start () { //Eve...
分类:
编程语言 时间:
2014-11-24 22:12:09
阅读次数:
310
查看zabbix 告警脚本位置 [root@zabbix?alertscripts]#?grep?"^AlertScriptsPath"?/etc/zabbix/zabbix_server.conf
AlertScriptsPath=/usr/lib/zabbix/alertscripts 编写告警邮件脚本 #cd?/usr/lib/zabbix/a...
分类:
其他好文 时间:
2014-11-24 13:50:01
阅读次数:
242
看过之前的 virtual function可以知道其实现模型: 每一个 class 有一个 virtual table. 内含该 class 之中 有作用的 virtual function 地址, 然后每个 object 有一个 vptr, 指向 virtual table 的所在. 在这一节中...
分类:
其他好文 时间:
2014-11-23 17:19:40
阅读次数:
226
The malloc package void* malloc(size_t size) void free (void *p) other functions calloc: Version of malloc that initializes allocated block to zero re...
分类:
其他好文 时间:
2014-11-23 17:18:55
阅读次数:
180