
Base_system
sys_info 类 namespace base class SysInfo 函数 返回当前计算机上的逻辑处理器/内核数 static int NumberOfProcessors(); 返回当前机器上物理内存的字...
sys_info 类 namespace base class SysInfo 函数 返回当前计算机上的逻辑处理器/内核数 static int NumberOfProcessors(); 返回当前机器上物理内存的字...
file 操作类型 class BASE_EXPORT File { enum Flags { FLAG_OPEN = 1 << 0, // Opens a file, only if it exists...
hash Hash 计算内存缓冲区的哈希 不推荐这个,改用FastHash BASE_EXPORT uint32_t Hash(const void* data, size_t length); BASE_EXPOR...
垃圾回收 JavaScript 中主要的内存管理概念是 可达性。 列出固有的可达值的基本集合,这些值明显不能被释放。这些值被称作 根(roots)。 当前函数的局部变量和参数。 嵌套调用时,当前调用链上所有函数的变量...
string_piece_forward namespace base { template <typename STRING_TYPE> class BasicStringPiece; typedef ...
json_writer Write 写json文件。 static bool Write(const Value& node, std::string* json, size_t max_depth = in...
调试 debugger 可以使用 debugger 命令来暂停代码 function hello(name) { let phrase = `Hello, ${name}!`; debugger; // <--...
基础 CMakeLists.txt cmake_minimum_required(VERSION 3.10) # set the project name project(Tutorial) # add the ex...
科学完全不能定位才能的基因,它也无法解密一些更引人入胜和实用的东西:10000小时法则。这一法则是由20世纪70年代的心理学家们提出的,他们认为所有的世界级专家(从作曲家、外科医生到足球运动员)都需经历10000小时...
基础知识二 字符串转换 let value = true; alert(typeof value); // boolean value = String(value); alert(typeof value); //...