上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 34 下一页
摘要: 我们在visual studio的属性界面中经常看到$(SolutionDir)、$(Configuration)、$(ProjectName)等宏,可以通过以下sao操作查看: ref: https://blog.csdn.net/caoshangpa/article/details/536715 阅读全文
posted @ 2020-05-17 17:53 JadeCicada 阅读(2108) 评论(0) 推荐(0) 编辑
摘要: Reason1: 原因是当前工程是Debug/Release版本,而引用的库文件时Release/Debug版本,只需要把当前的Debug/Release模式改成Release/Debug模式就可以了,或者打开解决方案--》属性--》链接器--》输入--》附加依赖项中引用debug版本的lib文件名 阅读全文
posted @ 2020-05-07 07:56 JadeCicada 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 1 交大硕士时的教材: 阅读全文
posted @ 2020-05-04 10:03 JadeCicada 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 2020-05-04 09:37:31 ASAM(德国自动化及测量系统标准协会)制订并推广的OpenX标准正在引领自动驾驶场景模拟仿真测试标准的发展。 ASAM协会:制定、协调仿真领域自动驾驶标准 , web: https://www.asam.net/ 德国自动化及测量系统标准协会(ASAM)是一 阅读全文
posted @ 2020-05-04 09:36 JadeCicada 阅读(2444) 评论(0) 推荐(0) 编辑
摘要: 1) a.+?d表示:以“a”开始,后面是除了回车以外的其它字符,最后以“d”结束。 \[5531\].+?3903 表示:以[5531]开始,3903结尾的那一行,在notepad++中,[]表示匹配其中任意字符,如果要搜索[],要加转义字符“\”。 Ref: https://blog.csdn. 阅读全文
posted @ 2020-05-03 17:00 JadeCicada 阅读(431) 评论(0) 推荐(0) 编辑
摘要: https://www.pianshen.com/article/7437339606/ 阅读全文
posted @ 2020-05-03 16:51 JadeCicada 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 2020-05-03 git clean命令用来从你的工作目录中删除所有没有tracked过的文件 git clean经常和git reset --hard一起结合使用,git reset只影响被track过的文件, 所以需要clean来删除没有track过的文件. 结合使用这两个命令能让你的工作目 阅读全文
posted @ 2020-05-03 16:47 JadeCicada 阅读(207) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/bytxl/article/details/48287499 FILE之GLOB:相对路径 https://blog.csdn.net/siwen0/article/details/102564310 阅读全文
posted @ 2020-05-03 16:38 JadeCicada 阅读(132) 评论(0) 推荐(0) 编辑
摘要: git stash save git stash list git stash show git stash apply stash@{0} //0为序号, git stash pop stash@{0} git stash drop stash@{0} :丢弃stash@{$num}存储,从列表中 阅读全文
posted @ 2020-05-03 15:44 JadeCicada 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Git默认配置为忽略大小写,解决方法 git config core.ignorecase false 阅读全文
posted @ 2020-05-03 14:56 JadeCicada 阅读(226) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 34 下一页