大约有 46,000 项符合查询结果(耗时:0.0442秒) [XML]

https://bbs.tsingfun.com/thread-692-1-1.html 

C++指针及引的使总结 - C/C++ - 清泛IT论坛,思想、深度

:一般不允许指向空对象,它的本质也是一种指针。 待总结。。。
https://bbs.tsingfun.com/thread-689-1-1.html 

C++的多态、重载在内存中的实现 - C/C++ - 清泛IT论坛,思想、深度

待总结。。。
https://bbs.tsingfun.com/thread-688-1-1.html 

关于C/C++的强类型、弱类型的总结 - C/C++ - 清泛IT论坛,思想、深度

int a = 1; (强类型) int a; (弱类型) 两个强类型是否能编译通过? 待研究。。。
https://bbs.tsingfun.com/thread-605-1-1.html 

sizeof、strlen简单总结 - C/C++ - 清泛IT论坛,思想、深度

sizeof strlen const char* p 4 字符串长度 std::string 4 字符串长度 "......" 字符串长度+1   ('\0') 字符串长度
https://bbs.tsingfun.com/thread-568-1-1.html 

error: ISO C++ forbids declaration of 'XXXX' with no type - C/C++ - 清泛IT论坛,思想、深度

出现这个错误,一般是由于两个CPP相互都相互包含了对方的头文件造成的,比如: 当mainwindow.cpp、configdialog.cpp两个文件,分别包含了对方的头文件,并且分别又在自己的类中声明了对象,即: mainwindow.cpp #include "configdialog....
https://bbs.tsingfun.com/thread-1011-1-1.html 

意见反馈考虑改为bbs:[url]https://bbs.tsingfun.com/forum.php?mod=forum...

意见反馈考虑改为bbs:https://bbs.tsingfun.com/forum.p ... ypeid&typeid=63已修改。
https://bbs.tsingfun.com/thread-766-1-1.html 

CTabCtrl activetab 设置焦点Tab - VC/MFC - 清泛IT论坛,思想、深度

CTabCtrl::SetCurSel(n); xxxdlg.ShowWindow(SW_SHOW);
https://bbs.tsingfun.com/thread-1025-1-1.html 

2023年1月13日签到记录贴 - 灌水吐槽、新手试贴 - 清泛IT论坛,思想、深度

...奖励 F币 9,另外我还额外获得了 F币 10.我今天最想说:「没作业」.
https://bbs.tsingfun.com/thread-13-1-1.html 

MFC CString与std::string互转 - VC/MFC - 清泛IT论坛,思想、深度

CString cstr; std::string stdstr; 非Unicode: stdstr.assign( (LPSTR) (LPCTSTR) cstr);   或者   stdstr = std::string( (LPSTR) (LPCTSTR) cstr); cstr = CString( stdstr.data() ); Unicode: stdstr.assign( CT2A ( (LPCTSTR) cstr ));   或者   stdstr...
https://bbs.tsingfun.com/thread-3-1-1.html 

OnInitDialog()中SetFocus()设置焦点不起作解决方法 - VC/MFC - 清泛IT论...

BOOL Cxxx::OnInitDialog() {     ...     ::SetFocus(m_wndEdit);   // 不起作,请参照如下VS自动生成的注释。     ...     return TRUE; // 除非将焦点设置到控件,否则返回 TRUE } 当然,改为return FALSE;能解...