上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 23 下一页
摘要: C/C++怎样产生随机数:这里要用到的是rand()函数, srand()函数,C语言/C++里没有自带的random(int number)函数。(1) 如果你只要产生随机数而不需要设定范围的话,你只要用rand()就可以了:rand()会返回一随机数值, 范围在0至RAND_MAX 间。RAND... 阅读全文
posted @ 2016-01-06 16:18 xzh1993 阅读(1439) 评论(0) 推荐(0) 编辑
摘要: #include #include CTime t = CTime::GetCurrentTime(); int nYear = t.GetYear() - 2000; int nMonth = t.GetMonth(); int nDay = t.GetDay(); int nTime = t.... 阅读全文
posted @ 2016-01-06 15:40 xzh1993 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 1基本解释:extern可以置于变量或者函数前,以标示变量或者函数的定义在别的文件中,提示编译器遇到此变量和函数时在其他模块中寻找其定义。此外extern也可用来进行链接指定。 也就是说extern有两个作用,第一个,当它与"C"一起连用时,如: extern "C" void fun(int a,... 阅读全文
posted @ 2015-12-25 14:17 xzh1993 阅读(535) 评论(0) 推荐(0) 编辑
摘要: int length = sPath.GetLength(); CString sFormat = _T(""); for (int i = length - 1; i > 0;i--) { if (_T('.')==sPath.GetAt(i)) { sFormat = sPa... 阅读全文
posted @ 2015-12-15 17:24 xzh1993 阅读(165) 评论(0) 推荐(0) 编辑
摘要: #include <string> #include <io.h> #include <vector> #include <iostream> using namespace std; /******************************************************** 阅读全文
posted @ 2015-12-15 14:53 xzh1993 阅读(780) 评论(0) 推荐(0) 编辑
摘要: 都通过基本类型来转换即可:CString可以转换为基本类型LPCTSTR,LPCTSTR根据项目编码可以是const char*或者const wchar_t*;string可以用c_str()转换为const char*,stringw可以用c_str()转换为const w_char*。而CSt... 阅读全文
posted @ 2015-12-15 14:51 xzh1993 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 1,目的提供一个对话框供用户选择一个文件夹路径。2,原理&实现先贴上这个工具类的源码:在你的程序中使用静态方法 CSelectFolderDlg::Show() 就能显示一个选择文件夹的对话框啦,返回的CString就是所选文件夹路径。[cpp]view plaincopy/*文件:SelectFo... 阅读全文
posted @ 2015-12-15 13:36 xzh1993 阅读(4416) 评论(0) 推荐(0) 编辑
摘要: %2d是C语言中printf函数的输出格式说明符。具体解释如下:使输出的int型的数值以2位的固定位宽输出。如果不足2位,则在前面补空格;如果超过2位,则按实际位数输出。注:如果输出的数值不是int型,则进行强制类型转换为int,之后按上面的格式输出。举例如下:printf("%2d",12);//... 阅读全文
posted @ 2015-12-11 10:24 xzh1993 阅读(836) 评论(0) 推荐(0) 编辑
摘要: bool CInsertTyDlg::AlterDefinition(AcDbBlockReference *pRef, AcDbObjectId objId){ AcDbBlockTableRecord *pBlkTabRcd = NULL; acdbOpenObject(pBlkTabRcd, ... 阅读全文
posted @ 2015-12-09 15:28 xzh1993 阅读(928) 评论(0) 推荐(0) 编辑
摘要: AcDbObjectPointer padbr(adoiEditId, AcDb::kForRead); AcGePoint3d pInsert = padbr->position();adoiEditId是块参照的IDpInsert是插入点 阅读全文
posted @ 2015-11-26 09:16 xzh1993 阅读(458) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 23 下一页