发布时间:2013-11-29 16:08:34
数据库操作的pc文件里犯了个错误:snprintf(SqlCont,sizeof(SqlCont),"%s","select EventClassID,AlarmMode,deleteFlag from Monitor_Event_Alarm""where modifytime>=to_date(:v1,'yyyy-mm-dd hh24:mi:ss')");pc执行这里面的语句的时候就报错:ORA-00933: SQL command not properly ended是因为snprintf把select那一.........【阅读全文】
发布时间:2013-11-26 15:50:57
1、错误:在嵌套模板实参列表中应当使用 ‘> >’ 而非 ‘>>代码:typedef map map_u64_pu64;更正:typedef map< Uint64, pair > map_u64_pu64;map后面的一对尖括号里可以有空格。在上面的例子里,pair的>和map的>之间应该有空格。2、错误:友元声明没有指定类或函数.........【阅读全文】
发布时间:2013-11-12 17:27:07
把时间格式HHMMSS转换为HH:MM:SS[linl@localhost ~]$ echo 000000|sed 's/./&:/2;s/./&:/5'00:00:00[linl@localhost ~]$ echo 000000|sed 's/./&:/2;s/..:../&:/1'00:00:00“.” 实心原点,代表任意字符“&” 匹配到的、要替换的字符(串)s/./&:/2 把第2个形.........【阅读全文】
发布时间:2013-10-30 16:10:41
以下测试代码里,结构体A2的对齐方式,gcc 3.4.6和4.1.2是不一样#include #pragma pack(push)#pragma pack(1)struct a1{ short a; int b; c.........【阅读全文】
发布时间:2013-10-29 12:10:20
使用gcc version 3.4.6 20060404 (Red Hat 3.4.6-3),结构体按字节对齐了,使用了结构体的成员的引用,编译时报错:cannot bind packed field *** to ***使用gcc 版本 4.1.2 20080704 (Red Hat 4.1.2-48),编译正常。参考帖子:http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36566用了强制类型转换,解决了编译问题,.........【阅读全文】