
Enhance VC++/C++
文章平均质量分 81
searoc
你认识我,但是我不认识你,真是可悲.不过也没有关系
展开
-
大家看看一道面试题,我感觉有错误
题目是: int *a[4]; int *p1,*p3; int b; for(int i = 0;i a[i]=(int *)i; } p1 = a[1]; p3 = a[3]; b = p3 - p1; a[b]=?这是北京索贝数码科技的一道面试题,真不知道在考什么,且不说在实际编译器中会出现多少warning,就连最后问的问题都有问题。问数组指针的地址是什么?还是 "*a[b]=?"?不明原创 2005-03-04 16:37:00 · 2304 阅读 · 4 评论 -
How C# Differs From C
If you have been exposed to C, or if you are an experienced Cprogrammer, you might be interested in the main differences between C# and C:C#与C之间的主要区别是:1. C# does not usually make use of pointers. Yo原创 2005-03-06 14:19:00 · 1648 阅读 · 0 评论 -
An interview examination of AC company for Unix programmer?
Those stuff are the questions testing for Unix/Linux grogrammer. I have little experience on UNIX, who can figure out the anwsers? I recited those questions because I thought I should not waste the ch原创 2005-03-12 16:14:00 · 1844 阅读 · 0 评论 -
别小看了L10N&I18N
以下技术是一种折中方案。根据Oracle网站上罗列的技术文档,纯粹的UNICODE方案并不在如下文章打讨论范围。本人将在以后章节中,介绍如何应用Oracle纯粹的UNICODE解决方案到实际的系统中。 感谢IA students们,以及歌神,James,园园… 技术不是万能的,但是没有技术是万万不能的。 ―原创 2006-08-29 23:11:00 · 3924 阅读 · 1 评论 -
Automation Testing Framework by c++, Practice-1: tips from POSA4
When I am reading some chapters in "Pattern.Oriented.Software.Architecture.Volume4: A Pattern Language for Distributed Computing",one glue came into my mind if we can use some "Reflection" patte原创 2007-08-15 13:10:00 · 1584 阅读 · 0 评论 -
以XML文件存储配置数据的技术实现,c++
一般新手通常只是使用类似的Xerces, TinyXML之类的XML解析xml,这种方式实际上很浪费时间,自己编写很多代码也容易出错。因为,他们经常要写一个XML对象Entity的类,并附着一堆对象解析的code。工作量比较大。使用XML Schema工具,XSD设计工具,然后通过工具生成EntityClass和Paser class。我不知道这种技术确切的起源时间,但是我知道这种用法原创 2010-01-05 10:13:00 · 4548 阅读 · 4 评论