c++
文章平均质量分 56
summermoonlight
满船清梦压星河
展开
-
【论文阅读】PGM-index
PGM-index 论文阅读原创 2023-01-09 12:09:11 · 1069 阅读 · 0 评论 -
PGM-index 代码分析
pgm-index代码原创 2023-01-08 19:34:43 · 937 阅读 · 0 评论 -
c++ lambda表达式中的捕获列表
c++ lambda表达式中的捕获列表原创 2023-01-08 19:15:54 · 141 阅读 · 0 评论 -
并行计算 Clion配置使用OpenMP
OpenMP使用原创 2023-01-07 21:06:33 · 1482 阅读 · 2 评论 -
c++ for并行执行
c++ for并行执行原创 2023-01-06 16:21:48 · 2459 阅读 · 0 评论 -
C++17新特性 invoke_result_t 的使用
C++17新特性 invoke_result_t 的使用原创 2023-01-06 16:10:16 · 2441 阅读 · 1 评论 -
探究变量在内存中的存储
#include <stdio.h> #include<iostream>using namespace std;int g1 = 0, g2 = 0, g3 = 0;void f(int x1,int x2,int x3) { int x; cout << "函数中的变量" << endl; printf("x地址:0x%08x\n", &x); printf("x1地址:0x%08x\n", &x1); printf原创 2021-05-13 10:43:28 · 273 阅读 · 0 评论 -
c++正则表达式
正则表达式需要头文件 #include< regex >1、匹配bool regex_match(string s,regex pattern)bool regex_match(string s,smatch result,regex pattern)bool regex_match(s.cbegin()+i,s.cend(),smatch result,regex pattern) //从字符串的某个位置开始匹配匹配函数只有当模式匹配了整个字符串(或从给定位置开始的字符串),才原创 2021-04-08 16:27:33 · 250 阅读 · 0 评论 -
c++11新版本"for循环的使用"和"auto的使用"
贪吃蛇游戏的c++版本,从GitHub上clone下来的,在startinterface.cpp文件中有如下代码:void StartInterface::PrintText(){ for (auto & point : textsnake) { if(point.GetX() >= 0) point.Print(); ...原创 2019-09-03 13:37:40 · 3754 阅读 · 0 评论 -
c++文件操作
c++文件操作可以使用库"fstream"来解决它有 3 个很重要的类。ifstreamofstreamfstreamifstream 是针对文件读取的流ofstream 是针对文件写入的流fstream 针对文件读取和写入的流打开文件void open(const std::string& __s, ios_base::openmode __mode );open...原创 2019-09-04 12:49:37 · 7088 阅读 · 1 评论