上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
摘要: Tool-CMake-How CMake simplifies the build process by Bruno Abinader https://gitlab.kitware.com/cmake/community/-/wikis/home https://brunoabinader.gith 阅读全文
posted @ 2023-04-29 12:59 Theseus‘Ship 阅读(20) 评论(0) 推荐(0)
摘要: Tool-CMake-A Simple CMake Example https://cmake.org/examples/ There are three directories involved. The top level directory has two subdirectories cal 阅读全文
posted @ 2023-04-29 10:12 Theseus‘Ship 阅读(20) 评论(0) 推荐(0)
摘要: #C++-template class-模板类 【C++高级教程,C++类模板一次讲透,必须收藏!】 https://www.bilibili.com/video/BV1v84y1x7Qp/?share_source=copy_web&vd_source=3809390a14c335e7731c9e 阅读全文
posted @ 2023-04-16 23:31 Theseus‘Ship 阅读(489) 评论(0) 推荐(0)
摘要: Graphviz 安装包&源码 https://graphviz.gitlab.io/download/ sudo apt install graphviz https://graphviz.gitlab.io/download/source/ ./configure make make insta 阅读全文
posted @ 2023-04-16 22:48 Theseus‘Ship 阅读(72) 评论(0) 推荐(0)
摘要: #IDE-Visual Studio Code-Extension-离线安装PlantUML https://www.hd2y.net/archives/plantuml-installation-and-use PlantUML + Graphviz + Java PlantUML Extensi 阅读全文
posted @ 2023-04-16 22:47 Theseus‘Ship 阅读(764) 评论(0) 推荐(0)
摘要: Tool-GitLab https://about.gitlab.com/ GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的Web服务。 安装方法是参考GitLab在GitHub上的Wiki页面。 Gitlab是被广泛使用的基于git的开源代码管理平 阅读全文
posted @ 2023-04-14 22:50 Theseus‘Ship 阅读(97) 评论(0) 推荐(0)
摘要: #IDE-Visual Studio Code-Extensions(插件) https://marketplace.visualstudio.com/ 网上百度到的一些visualstudiocode的extensions插件。 ##主题 Moonlight Nord Noctis Palenig 阅读全文
posted @ 2023-04-14 21:31 Theseus‘Ship 阅读(52) 评论(0) 推荐(0)
摘要: Tool-CMake https://cmake.org/ https://cmake.org/download/ https://cmake.org/documentation/ https://cmake.org/runningcmake/ Book: Mastering CMake 3.1 E 阅读全文
posted @ 2023-04-12 22:48 Theseus‘Ship 阅读(72) 评论(0) 推荐(0)
摘要: #Code-C++-Linux-统计一个文件夹占据空间大小 https://my.oschina.net/Tsybius2014/blog/330628 从以上链接中拷贝的代码 #include <stdio.h> #include <sys/stat.h> #include <sys/types. 阅读全文
posted @ 2023-04-11 21:58 Theseus‘Ship 阅读(143) 评论(0) 推荐(1)
摘要: #C++-unique_lock与lock_guard区别 https://blog.csdn.net/ccw_922/article/details/124662275 https://blog.csdn.net/sinat_35945236/article/details/124505414 都 阅读全文
posted @ 2023-04-11 21:13 Theseus‘Ship 阅读(283) 评论(0) 推荐(0)
摘要: #C++-Error:invalid new-expression of abstract class type C++工程,使用new操作符,new一个抽象类对象时编译报错如下: Error:invalid new-expression of abstract class type XXX 原因 阅读全文
posted @ 2023-04-11 19:58 Theseus‘Ship 阅读(736) 评论(0) 推荐(0)
摘要: #Code-C++-Linux-利用condition_variable封装event C++11使用condition_variable加上mutex封装event类,实现等同于windows的事件功能。 从网上百度到的以下代码实现,具体网址搞丢了。 #include <iostream> #in 阅读全文
posted @ 2023-04-11 00:09 Theseus‘Ship 阅读(60) 评论(0) 推荐(0)
摘要: #Code-C++-Linux-获取时间time()/localtime()/gettimeofday() #include <iostream> //#include <time.h> #include <sys/time.h> //for gettimeofday() #include <str 阅读全文
posted @ 2023-04-10 23:50 Theseus‘Ship 阅读(144) 评论(0) 推荐(0)
摘要: #Code-C++-fstream-输出到文件 利用fstream文件流输出 利用stat查看文件大小 设定文件最大值宏定义 #include <fstream> #include <string> #include <sys/stat.h> #include <iostream> #define 阅读全文
posted @ 2023-04-10 23:44 Theseus‘Ship 阅读(31) 评论(0) 推荐(0)
摘要: #C++-C11-chrono-获取当前时间、获取阶段时间 Linux下使用C++11的chrono库获取时间。 #include <chrono> #include <thread> #include <iostream> int64_t getCurrentLocalTimeStamp(){ s 阅读全文
posted @ 2023-04-10 23:34 Theseus‘Ship 阅读(348) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
Live2D