上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页
摘要: 一 思考 二 浅拷贝 三 深拷贝 阅读全文
posted @ 2019-10-03 22:29 火焰马 阅读(159) 评论(0) 推荐(0)
摘要: 一 CComplex 类内 二 CComplex 类外 三 仿写std::cin和std::cout 压缩包: 链接 阅读全文
posted @ 2019-10-03 11:46 火焰马 阅读(151) 评论(0) 推荐(0)
摘要: 一 this指针原理 阅读全文
posted @ 2019-10-03 11:40 火焰马 阅读(161) 评论(0) 推荐(0)
摘要: 一 逻辑 + STL(使用)_表内排序 压缩包: 链接 二 逻辑 + STL(使用)_表外排序 压缩包: 链接 三 逻辑 + STL(仿写) 压缩包: 链接 阅读全文
posted @ 2019-10-02 21:32 火焰马 阅读(130) 评论(0) 推荐(0)
摘要: #include "stdafx.h" #include #include using namespace std; typedef struct SStud { int nNumb; char szName[20]; double fMath; }DATA; bool byNumb(const DATA &dMin, const DATA &dCompar... 阅读全文
posted @ 2019-10-02 00:10 火焰马 阅读(189) 评论(0) 推荐(0)
摘要: 压缩包: 链接 压缩包: 链接 阅读全文
posted @ 2019-10-02 00:06 火焰马 阅读(134) 评论(0) 推荐(0)
摘要: 一 C++历史 二 C++思想 阅读全文
posted @ 2019-09-28 01:07 火焰马 阅读(143) 评论(0) 推荐(0)
摘要: 问题 1 区别: null NULL 0 nullptr -1 2 区别及使用: ascii UNICODE utf8 3 int: 原码、反码、补码 4 float: 指数存储、小数存储 5 计算: 结构体对齐后大小 https://www.cnblogs.com/clover-toeic/p/3853132.html 6 预处理: typedef https://www.cnblogs.com 阅读全文
posted @ 2019-09-26 00:31 火焰马 阅读(206) 评论(0) 推荐(0)
摘要: /* 目录: 一 时间操作 二 磁盘读取 */ 一 时间操作 void ShowCurrentTime() { time_t tt; time(&tt); tm *time = localtime(&tt); char* ws[] = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", }; printf("%d/%d/%d (%s) %02d:% 阅读全文
posted @ 2019-09-26 00:26 火焰马 阅读(223) 评论(0) 推荐(0)
摘要: // 错误演示 #include "stdafx.h" #include #include int main(int argc, char *argv[], char **envp) { return 0; } fatal error C1189: #error: "No Target Architecture" // 错误修改 #include... 阅读全文
posted @ 2019-09-23 12:24 火焰马 阅读(1690) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页