C++ – std::string与std::wstring相互转换
1 std::string与std::wstring相互转换 1.1 windows上的std::string与std::wstring相互转换 在Windows上,可以使用MultiByteToWideChar和WideCharToMultiByte函数来进行std::string和std::ws…
- C++
- 2021-08-20
计算几何 – C++计算两个二维向量的夹角
1 计算两个二维向量的夹角 #include <iostream> #include <cmath> struct PoseInfo { float x; float y; }; typedef PoseInfo Point2D; typedef PoseInfo Vecto…
- C++
- 2021-08-12
C++ – std::map正向遍历与反向遍历的几种方式
1 std::map正向遍历 1.1 for循环 #include <iostream> #include <string> #include <map> int main() { std::map<int, std::string> t_Map; t…
- C++
- 2021-05-21
C++11 – 使用std::thread::join()/std::thread::detach()方法需要注意的点
1 调用std::thread::join()方法等待线程退出时的示例问题程序 #include <iostream> #include "conio.h" #include <memory> #include <thread> #include <atom…
- C++
- 2021-02-26
C++11 – std::chrono – 使用std::chrono::duration_cast进行时间转换,hours/minutes/seconds/milliseconds/microseconds相互转换,以及自定义duration进行转换
1 小时转换为分钟/秒/毫秒/微秒 #include <iostream> #include <string> #include <chrono> int main() { std::chrono::hours hour_time = std::chrono::h…
- C++
- 2021-02-05
C++11 – 使用std::chrono计算程序、函数运行时间
1 使用std::chrono计算程序运行时间 参考代码如下: #include <iostream> #include <string> #include <chrono> void Run() { for (int i = 0; i < 10000000…
- C++
- 2021-02-05
C++ – 线程安全的std::cout
1 线程安全的std::cout 最近在多个子线程中使用std::cout输出日志信息发现std::cout不是线程安全的,无法保持线程同步,导致日志信息无法按照固定顺序输出,现象如下: 所以对std::cout做了一个封装以保证多线程之间的同步,代码如下: #include <iostrea…
- C++
- 2021-02-01
C++11 – std::string – stod/stof/stoi/stol/stold/stoll/stoul/stoull,由std::string转换为int/long/float/double等其他类型
在C++11发布之前我们只能使用C语言的atoi等函数完成字符串到int/float/double等类型的转换,而在C++11中在std::string中自带了stoi/stod等工具函数进行转换! 1 std::stod 函数原型 double stod (const string& st…
- C++
- 2021-01-29
C++ – std::string输出双引号到字符串
1 C++ std::string输出双引号到字符串 输出双引号“”到字符串中可以通过添加转义字符"\"对双引号进行转义, 可参考代码如下: int main() { string str = "\"Everything is worse!\""; cout << str <<…
- C++
- 2021-01-28
C++ – 获取当前进程内存使用情况
1 获取当前进程内存使用情况 1.1 GetProcessMemoryInfo函数和其他相关信息 可以使用psapi.h中的GetProcessMemoryInfo函数获取指定进程的内存使用情况的信息。 BOOL GetProcessMemoryInfo( HANDLE Process, PPROC…
- C++
- 2021-01-25
C++ – 只有在Debug模式下才使用std::cout输出调试日志,Release发布版本不输出调试日志
1 调试日志的输出 日志的输出的重要性:在程序开发过程中,日常调试信息的输出对锁定bug代码行位置、数据校验、信息判断起着非常重要的作用。 日志输出的缺陷:但是在发布的生产版本代码中大量输出日志容易造成性能丢失,日志文件过大的问题,所以调试日志输出常常只是需要在Debug模式下需要,而在发布版本中是…
- C++
- 2021-01-16
Centos7 编译C++项目错误解决 : terminate called after throwing an instance of ‘std::regex_error’
1 问题原因 Centos7默认的gcc版本是4.8.3,虽然对C++11的一些新特性提供了支持,但是对C++11的正则表达式好像只写了头文件,没有提供具体的实现????!Wtf! 因为在cmake编译项目的时候整个项目可以正确的编译成功,但是一旦运行就会出现 terminate called af…
- C++
- 2020-12-16