随笔 - 1759  文章 - 0  评论 - 109  阅读 - 430万
01 2019 档案
pugixml 1.9 manual解读(部分)
摘要:Plain character data nodes (node_pcdata) represent plain text in XML. PCDATA nodes have a value, but do not have a name or children/attributes. Note t 阅读全文
posted @ 2019-01-24 21:30 一杯明月 阅读(138) 评论(0) 推荐(0) 编辑
U盘无法拔出的解决办法
摘要:http://blog.51cto.com/mengsir/896372 阅读全文
posted @ 2019-01-22 22:36 一杯明月 阅读(396) 评论(0) 推荐(0) 编辑
Function Pointers in C
摘要:来源:https://cs.nyu.edu/courses/spring12/CSCI-GA.3033-014/Assignment1/function_pointers.html Function Pointers in C Just as a variable can be declared t 阅读全文
posted @ 2019-01-21 14:16 一杯明月 阅读(231) 评论(0) 推荐(0) 编辑
C++ typedef的一个用法
摘要:1.不适用typedef: 2.使用typedef: 阅读全文
posted @ 2019-01-21 11:18 一杯明月 阅读(142) 评论(0) 推荐(0) 编辑
C++读文件和写文件
摘要:1.写: /*C++写文件和读文件*/ #include <stdio.h> #include <stdlib.h> int main() { FILE * fp; fp = fopen("test_file.txt", "w+"); fprintf(fp, "%d %s %s %s %s %s % 阅读全文
posted @ 2019-01-21 10:47 一杯明月 阅读(1105) 评论(0) 推荐(0) 编辑
C++判断一个文件是否可以正确打开的代码
摘要:/* fopen example */ #include #include using namespace std; int main() { FILE* fp; fp = fopen("C:/Users/Qin/Desktop/123.txt", "rb"); if ((fp == NULL)) { printf("\nerror on ... 阅读全文
posted @ 2019-01-21 10:25 一杯明月 阅读(2790) 评论(0) 推荐(0) 编辑
墨卡托投影代码
摘要:参考: https://www.cnblogs.com/rainbow70626/p/7989907.html https://www.cnblogs.com/DHUtoBUAA/p/6706642.html http://cdn.hujiulong.com/geohey/blog/mercator 阅读全文
posted @ 2019-01-19 09:24 一杯明月 阅读(935) 评论(0) 推荐(0) 编辑
C++的栈
摘要:栈,是一种存储受限的线性数据结构,在存储和访问数据的时候只能访问栈的一端。栈类似于一摞盘子,只能拿去最上面的盘子,也只能把盘子放到最上面。由于这种特点,栈是一种后进先出(Last in / First out, LIFO)的数据结构。 栈的主要操作有以下几种: push向栈顶插入元素(摞上去一个盘子 阅读全文
posted @ 2019-01-15 21:16 一杯明月 阅读(8374) 评论(0) 推荐(1) 编辑
vs2015配置boost c++
摘要:参考:https://blog.csdn.net/zengraoli/article/details/70187556 https://blog.csdn.net/misterfm/article/details/79048594 阅读全文
posted @ 2019-01-06 11:29 一杯明月 阅读(974) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示