摘要:
1)sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup 2)sudo gedit /etc/apt/sources.list { deb-src http://archive.ubuntu.com/ubuntu xenial main 阅读全文
摘要:
cmd wmic cpu / cpu get * { AddressWidth Architecture AssetTag Availability Caption Characteristics ConfigManagerErrorCode ConfigManagerUserConfig CpuS 阅读全文
摘要:
//info 阅读全文
摘要:
cmd systeminfo { 主机名: DESKTOP-RQ0CB26OS 名称: Microsoft Windows 10 专业版OS 版本: 10.0.18363 暂缺 Build 18363OS 制造商: Microsoft CorporationOS 配置: 独立工作站OS 构件类型: 阅读全文
摘要:
有返回值的函数没有返回值 不同CPU的处理能力是不一样的 如: bool Function::init() { if (!LayerColor::init()) { return false; } auto display = Director::getInstance()->getVisibleS 阅读全文
摘要:
{ //https://developer.android.google.cn/ndk/guides/android_mk } 阅读全文
摘要:
{ 了解string对象的内存分配行为后,接下来我们如何考虑使用什么方法来避免字符串频繁的拷贝,有些经验的“老油条”应该都领略过了const string&这类参数类型声明并不能从根本上解决问题(上一篇文章的程序输出已经隐藏地说明了这一点),因为按引用传参仅能避免了参数传递的字符串拷贝,但在被调用函 阅读全文
摘要:
#ifdef WIN32 _tsetlocale(LC_ALL, _T(" ")); ::AllocConsole(); ::freopen("CONIN$", "r", stdin); ::freopen("CONOUT$", "w", stdout); ::freopen("CONOUT$", 阅读全文
摘要:
运行gradle 的assembleDebug或者assembleRelease 如果出现 { CMake Error: CMake was unable to find a build program corresponding to "Ninja". CMAKE_MAKE_PROGRAM is 阅读全文
摘要:
/* 部分使用c++11 */ MusicLayer.cpp #include "MusicLayer.h" #ifdef _WIN32 #include "ATBAudioEngine/ATBAudioEngine.h" #endif #define DISPLAY Director::getIn 阅读全文