c c++
n2101
这个作者很懒,什么都没留下…
展开
-
Tomcat6 调用C/C++的cgi配置
context.xml [code="java"] WEB-INF/web.xml [/code] 要加上privileged="true",否则tomcat启动报错,Servlet of class org.apache.catalina.servlets.CGIServlet is privile...原创 2009-11-23 17:31:21 · 238 阅读 · 0 评论 -
静态变量在类外初始化
#include using namespace std; class T { private: static bool a[5][5]; public: void show() { cout原创 2009-01-01 22:49:58 · 922 阅读 · 0 评论 -
++i与i++效率比较
//因为i是基本类型int,而且没有用到整个表达式的值,所以在楼主的情况下,两种写法是一样的 //下面换一种,i不是基本类型,比如类类型,根据Effective C++的条款,使用了里面的手法:前置的++实作一个后置的++至于为什么,请看Effective C++ #include using namespace std; class Int { int data; p...原创 2009-01-01 23:02:40 · 208 阅读 · 0 评论 -
C++ Sockets Library
C++ Sockets Library (http://www.alhem.net/Sockets/) 搞不定放弃了,太闹心了。 看介绍似乎还不错,代码下来了,在vs2008下编译不能通过。 提示错误:Mac file format detected: please convert the source file to either DOS or UNIX format 把代码打开...原创 2010-01-31 15:25:29 · 228 阅读 · 0 评论