CAtlRegExp ClassCAtlRegExp
类用于表示并处理正则表达式。模板类,定义如下:template class
CAtlRegExp参数CharTraits字符特征对象.例如,默认的CAtlRECharTraitsA.摘要调用Parse方法设置正则表达式CAtlRegExp
re;...
分类:
其他好文 时间:
2014-05-23 04:43:21
阅读次数:
310
bool canExecute = true; recvClient = new
UdpClient(port); IPAddress ip = IPAddress.Parse("224.100.0.1"); try ...
分类:
其他好文 时间:
2014-05-19 11:08:40
阅读次数:
267
libclang是一个提供了C接口的一个库,它让你可以轻松的把clang作为一个库去使用,这样的做法带来了很多的有点,且看本文的一点小论。...
分类:
其他好文 时间:
2014-05-15 20:13:21
阅读次数:
208
最近把一个用eclipse构建的项目,加上了Gradle脚本,用它来编译。虽然最后编译是显示BUILD SUCCESSFUL,但是在编译过程中,却打印出一大堆栈信息,似乎是在编译我自定义的注解时出现的异常。
打印的栈信息前面部分如下:
:assemble
:lint
Failed converting ECJ parse tree to Lombok for file E:\code\git\...
分类:
其他好文 时间:
2014-05-15 00:00:10
阅读次数:
516
staticint_osip_message_parse(osip_message_t*sip,constchar*buf,size_tlength,intsipfrag){inti;constchar*next_header_index;char*tmp;char*beg;tmp=osip_malloc(length+2);if(tmp==NULL){OSIP_TRACE(osip_trace(__FILE__,__LINE__,OSIP_ERROR,NULL,"Couldnotallocatememory..
分类:
其他好文 时间:
2014-05-14 16:06:25
阅读次数:
296
显示分支
$git rev-parse --symbolic --branches
显示里程碑
$git rev-parse --symbolic --tags
显示引用
$git rev-parse --symbolic --branches
refs/heads/master
refs/remotes/origin/HEAD
refs/remotes/origin/master...
分类:
其他好文 时间:
2014-05-13 06:03:57
阅读次数:
387
学习ContentproviderUri的格式:“content://”+authority+“/表名”字符串转成Uri格式:Uri.parse();获取Cursor某一项的数据:Cursor先锁定某一行:如cursor.movetofirst();Cursor再根据列名锁定某一列,最后取出数据:cursor.getvaluesType(cursor.getcolumnindex(“列名”)..
分类:
其他好文 时间:
2014-05-13 01:51:36
阅读次数:
405
Oracle will generate something called cursor
after it parse an statement. This thing--cursor will be stored in Library cache,
if next time you need to...
分类:
数据库 时间:
2014-05-10 01:02:22
阅读次数:
579
function ChkJson(strJson) { //判断Json格式是否正确 if
(strJson == null || strJson == "") return true; try { JSON.parse(strJson); re...
分类:
Web程序 时间:
2014-05-09 03:30:59
阅读次数:
351
(1)
获取listview的内容
aa=(String)getData().get(arg2).get("title");
如何跳转到发短信页面:
注:自己可以添加联系人电话号码
smsToUri = Uri.parse("smsto:");
mIntent = new Intent( andr...
分类:
其他好文 时间:
2014-05-09 02:47:19
阅读次数:
236