bingmous

欢迎交流,不吝赐教~

导航

2024年11月16日 #

C++

摘要: 目录基础数据类型运算符流程控制函数指针与引用数组面相对象类的设计和对象的创建构造函数和析构函数常函数与常对象友元运算符重载封装(encapsulation)继承(inheritance)多态(polymorphism)结构体模板IOSTL标准模板库容器算法迭代器 基础 进制 注释:单行注释、多行注释 阅读全文

posted @ 2024-11-16 15:24 Bingmous 阅读(3) 评论(0) 推荐(0) 编辑

2024年10月26日 #

cmake

摘要: 目录参考概述使用 参考 win10 cmake下载:https://cmake.org/download/ ,make命令在mingw里,安装mingw即可,一般IDE会自带cmake和mingw,vscode需要安装插件 文档:https://cmake.org/cmake/help/latest 阅读全文

posted @ 2024-10-26 10:53 Bingmous 阅读(6) 评论(0) 推荐(0) 编辑

2024年10月25日 #

libtorch win10上使用

摘要: 目录下载说明 下载 wget https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.2.1%2Bcpu.zip 说明 libtorch使用MSVC编译,需要本机安装,并在IDE中使用MSVC工具链。 下载官方lib 阅读全文

posted @ 2024-10-25 22:55 Bingmous 阅读(24) 评论(0) 推荐(0) 编辑

2024年10月19日 #

c++单元测试框架googleTest

摘要: 目录编译使用 编译使用 官方文档中建议在工程中包含源码,避免各种库的不兼容问题,如LNK2038。 将源码下载后直接放入工程目录的lib目录下,并在CMakeLists.txt中配置: # 添加 Google Test 子目录 add_subdirectory(${PROJECT_SOURCE_DI 阅读全文

posted @ 2024-10-19 15:27 Bingmous 阅读(7) 评论(0) 推荐(0) 编辑

2024年10月15日 #

nfs

摘要: 目录 服务器端启动nfs systemctl start nfs 修改/etc/exports 修改后执行 exportfs -rv生效 /xxx *(rw,no_root_squash,sync) 客户端执行: mount -t nfs -o nolock 10.x.x.x:/xxx /xxx 卸 阅读全文

posted @ 2024-10-15 13:41 Bingmous 阅读(4) 评论(0) 推荐(0) 编辑

2024年9月4日 #

Visual Studio安装

摘要: 目录离线安装 离线安装 下载bootstrapper https://learn.microsoft.com/en-us/visualstudio/install/create-a-network-installation-of-visual-studio?view=vs-2022#download 阅读全文

posted @ 2024-09-04 22:51 Bingmous 阅读(10) 评论(0) 推荐(0) 编辑

2024年7月29日 #

Python内置模块常用总结

摘要: 目录unittest unittest 点击查看代码 import unittest from htmltestreport import HTMLTestReport class TestOne(unittest.TestCase): @classmethod def setUpClass(cls 阅读全文

posted @ 2024-07-29 10:27 Bingmous 阅读(10) 评论(0) 推荐(0) 编辑

2024年5月27日 #

Elasticsearch Guide 7.17

摘要: 目录介绍扩展性与可恢复性clientSet up ElasticsearchInstalling ESConfiguring ESImportant system configurationBootstrap ChecksBootstrap Checks for X-PackStarting Ela 阅读全文

posted @ 2024-05-27 15:03 Bingmous 阅读(82) 评论(0) 推荐(0) 编辑

2024年5月7日 #

java命令行参数解析库

摘要: 目录 http://jopt-simple.github.io/jopt-simple/index.html es/jdk都使用了这个轻量级库 阅读全文

posted @ 2024-05-07 10:38 Bingmous 阅读(43) 评论(0) 推荐(0) 编辑

2024年4月23日 #

Groovy in Gradle

摘要: 目录基础闭包闭包委托可以直接使用的对象其他groovy api 使用Gradle需要了解的Groovy语法: 基础 语句末尾不需要写分号 支持使用def定义动态数据类型变量 没有基本类型,全部使用包装类型 方法变化 使用def定义方法,可以不指定返回类型、参数类型,直接返回最后一行 方法调用可以不写 阅读全文

posted @ 2024-04-23 10:00 Bingmous 阅读(5) 评论(0) 推荐(0) 编辑