对字符型变量求和问题
下面这个程序,val被本人定义成了char型,那么本人输入123的时候,输出的sun是150,问一下这个结果是怎么得出来?计算机内部是怎么计算的? #include <iostream> int main() { int sum=0; char val; while(std::cin>>val) sum+=val; std::cout……
03-31 立刻查看
刚学命名管道,GetLastError=997.求指导
如题,服务器端的WriteFile和ReadFile,在GetLastError中返回错误代码997和234。请大家指点! 以下是代码,方便高手们查看,先放一份去掉错误处理的代码,后面是有错误处理的代码: //服务器端 #include <windows.h> #include <iostream> #include <stri……
03-31 立刻查看
shared_ptr智能指针是怎么释放资源的?
template<typename T> class shared_ptr { T *_ptr; std::size_t *count; .... public: shared_ptr(T *t=new T):_ptr(t),count(new std::size_t(1){} .... ~shared_ptr……
02-03 立刻查看
关于MFC TooltipCtrl
MFC里面有一个CToolTipCtrl气球工具 今天在使用过程中有一点疑惑,为什么需要重写PreTranslateMessage 并在里面调用RelayEvent(),这个函数有什么用,为什么需要调用这个函数? BOOL CDebugEditor::PreTranslateMessage(MSG* pMsg) { if(pMsg->message……
02-03 立刻查看