2019年2月24日
摘要:
解决办法: 1. 在开始菜单,找到“Visual Studio Tools”文件夹中的“VS 2017的开发人员命令提示符 ” 运行。 2. 输入:devenv /Safemode 3. 会以安全模式启动运行,应该不会弹出错误,然后在关闭重新启动看看。 参考链接:https://blog.csdn.
阅读全文
posted @ 2019-02-24 21:52
一杯明月
阅读(4033)
推荐(0)
2019年2月20日
摘要:
1.使用cmake的时候,显示cmake不是内部或外部命令,也不是可执行的程序。解决办法参考: https://blog.csdn.net/zmdsjtu/article/details/52296522 2.cmake教程参考:https://www.hahack.com/codes/cmake/
阅读全文
posted @ 2019-02-20 14:26
一杯明月
阅读(295)
推荐(0)
2019年2月18日
摘要:
1. https://github.com/changhexingchen/Lanelet2/blob/master/lanelet2_core/doc/RegulatoryElementTagging.md Lanelet2/lanelet2_core/doc/RegulatoryElementT
阅读全文
posted @ 2019-02-18 18:03
一杯明月
阅读(2184)
推荐(0)
2019年1月24日
摘要:
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
一杯明月
阅读(153)
推荐(0)
2019年1月22日
摘要:
http://blog.51cto.com/mengsir/896372
阅读全文
posted @ 2019-01-22 22:36
一杯明月
阅读(408)
推荐(0)
2019年1月21日
摘要:
来源: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
一杯明月
阅读(240)
推荐(0)
摘要:
1.不适用typedef: 2.使用typedef:
阅读全文
posted @ 2019-01-21 11:18
一杯明月
阅读(153)
推荐(0)
摘要:
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
一杯明月
阅读(1111)
推荐(0)
摘要:
/* 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
一杯明月
阅读(2806)
推荐(0)
2019年1月19日
摘要:
参考: 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
一杯明月
阅读(983)
推荐(0)