摘要:
const 通常修饰左边的类型,如果左边没有类型就修饰右边的类型。 阅读全文
摘要:
This constant value is used as an argument for operator new and operator new[] to indicate that these functions shall not throw an exception on failur 阅读全文
摘要:
https://blog.csdn.net/ghostyu/article/details/8208428 阅读全文
摘要:
https://www.w3.org/Submission/ws-addressing/ 阅读全文
摘要:
https://blog.csdn.net/ghostyu/article/details/8182516 阅读全文
摘要:
一、列举包文件列出资源库中所有可以安装或更新的rpm包# yum list列出资源库中特定的可以安装或更新以及已经安装的rpm包# yum list perl //列出名为perl 的包# yum list perl* //列出perl 开头的包列出资源库中所有可以更新的rpm包# yum list 阅读全文
摘要:
https://blog.csdn.net/ghostyu/article/details/8162280 阅读全文
摘要:
https://blog.csdn.net/ghostyu/article/details/8162193 阅读全文
摘要:
这是给编译器用的参数设置,有关结构体字节对齐方式设置, #pragma pack是指定数据在内存中的对齐方式。 #pragma pack (n) 作用:C编译器将按照n个字节对齐。#pragma pack () 作用:取消自定义字节对齐方式。 #pragma pack (push,1) 作用:是指把 阅读全文
摘要:
阅读笔记 初始化 变量定义指定了变量的类型和标识符,也可以为对象提供初始值。定义时指定了初始值的对象被称为是 已初始化的。C++ 支持两种初始化变量的形式:复制初始化和 直接初始化。复制初始化语法用等号(=),直接初始化则是把初始化式放在括号中:int ival(1024); // direct-i 阅读全文