C/C++技术
流水-
所有的高手都是从别人的肩膀上再往上爬的。
我不是高手,不过我一直努力在往上爬...
打工者没有事业,,,只有流浪的生活...
展开
-
Debugging Memory Errors in C/C++
Debugging Memory Errors in C/C++This page describes a few key techniques Ive learned about how to debug programs that are suspected of containing memory errors. Principally, this includes using memor原创 2005-09-03 16:42:00 · 1131 阅读 · 0 评论 -
VC补遗之Debug篇 (转)
作者: 晨光(Morning)转载 2005-10-07 19:09:00 · 1016 阅读 · 0 评论 -
Runtime errors
转自: http://www.computerhope.com/issues/ch000380.htm#runtimeREFERENCE NUMBER: CH000380Runtime errors:Issue:Runtime errors.Additional Information:A runtime error, in general, is an error转载 2005-10-22 15:33:00 · 1254 阅读 · 0 评论 -
如何用c语言调用c++做成的动态链接库 (转)
转自:http://blog.donews.com/xzwenlan/链接库头文件://head.hclass A{ public: A(); virtual ~A(); int gt(); int pt();private: int s;};.cpp//firstso.cpp#include #in转载 2005-11-04 14:18:00 · 954 阅读 · 0 评论