vscode debug配置{ "version": "0.2.0", "configurations": [ {....
2023-08-28 22:18:01
list查看当前位置周围的源代码行:在 GDB 命令行中输入 list 或 list <行号>,它将显示当前执行位置周围的源代码行。如果不指定行号,则默认显示当前行的前后若干行代码。查看指....
2023-08-28 21:46:11
开始你的创作:pkgconfig/usr/lib64/pkgconfig....
2022-07-06 15:31:57
options(repos=structure(c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/")))scl enable d....
2022-07-13 21:11:28
namespace scope#include<iostream>namespace Yahoo{ char* homePageUrl;}namespace Google{ c....
2020-12-06 20:13:27
Static variables#include <stdio.h>static int count = 5;void func();void main(){ while(count....
2020-12-05 20:41:44
在Windows系统下的执行文件格式是PE格式,动态库需要一个DllMain函数做出初始化的入口,通常在导出函数的声明时需要有_declspec(dllexport)关键字。Linux下gcc编译的执....
2020-07-22 16:40:06
C++11引入final特殊标识符,可以使得类不能被继承class B final {};class D : public B {};继承基类构造函数using A::A; 继承所有基类ctor继承....
2020-07-05 09:01:57
构造函数的初始化列表基本类型和传统相同,存在的意义:为了内嵌对象成员的初始化,内嵌对象在嵌入对象的构造函数执行之前就完成调用。在Action构造函数执行之前,必须调用Time的构造函数#include....
2020-07-05 09:38:14
模板存在的意义求两个整数、浮点数、字符的最大值?C语言实现int maxInt(int x,int y);double maxDouble(double x, double y);char maxCh....
2022-02-13 09:20:12