上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
摘要: #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 阅读(320) 评论(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 阅读(38) 评论(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 阅读(412) 评论(0) 推荐(0) 编辑
摘要: Tool-GitLab https://about.gitlab.com/ GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的Web服务。 安装方法是参考GitLab在GitHub上的Wiki页面。 Gitlab是被广泛使用的基于git的开源代码管理平 阅读全文
posted @ 2023-04-14 22:50 Theseus‘Ship 阅读(86) 评论(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 阅读(46) 评论(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 阅读(63) 评论(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 阅读(122) 评论(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 阅读(206) 评论(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 阅读(438) 评论(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 阅读(44) 评论(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 阅读(113) 评论(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 阅读(21) 评论(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 阅读(256) 评论(0) 推荐(0) 编辑
摘要: OS-Linux-端口占用 当Linux应用程序提示端口被占用,解决方案是先查询端口占用进程的pid,然后kill pid。 netstat -tlnap |grep port lsof -i:port查看端口占用的进程 kill-9 pid kill占用端口的进程 阅读全文
posted @ 2023-04-09 23:58 Theseus‘Ship 阅读(10) 评论(0) 推荐(0) 编辑
摘要: OS-Ubuntu-thunderbird包版本过低不兼容 在安装搜狗输入法时,遇到过thunderbird包版本过低不兼容的问题, 问题的格式如下: thunderbird-local-zh-hans: depends: thunderbird(<1:31 build 12.04.... but 阅读全文
posted @ 2023-04-09 23:51 Theseus‘Ship 阅读(48) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
Live2D