摘要:
关注的博客 王垠的博客 catcoding laruence 编程语言 Crafting “Crafting Interpreters” 在线学习网站 rust在线练习 阅读全文
摘要:
error: could not amend shell profile: '/Users//.profile': could not write rcfile file: '/Users//.profile': Permission denied (os error 13) error: coul 阅读全文
摘要:
visual studio code安装 vim 插件后不能响应长按,比如按下 j 键,光标不能持续向下。 Mac系统的问题,在终端中输入下面命令即可: defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false 阅读全文
摘要:
capslock -> ctrl // system key change inoremap jj <Esc> // esc config to jk let mapleader = " " // leader to space Verbs d: delete c: change y: yank ( 阅读全文
摘要:
qglobal.h __cplusplus //判断是否是c++编译器 include <type_traits> // [https://learn.microsoft.com/zh-cn/cpp/standard-library/type-traits?view=msvc-170] includ 阅读全文
摘要:
Mac下brew安装mysql sudo mysql.server start报错 Starting MySQL .Logging to '/usr/local/var/mysql/192.168.0.102.err'. .. ERROR! The server quit without updat 阅读全文
摘要:
mac qt安装 mac qt安装 下载的dmg启动后无法安装 系统偏好与设置->安全与隐私->通用->允许从以下位置安装选择仍要打开 debug启动控制台输出版本问题 程序坞出现图标但是不显示窗体 Project WARNING: Qt has only been tested with vers 阅读全文
摘要:
endl;//会刷新设备缓冲区 2.1.2类型转换 wchar_t//确保可以存放机器最大字符集的任意一个字符 char16_t char32_t//Unicode字符集服务 unsigned char c = -1;//255 超出显示范围 初始值对无符号类型表示总数取模后的余数 signed c 阅读全文
摘要:
int转string #include <sstream> int num = 100; std::ostringstream ss; ss << num; cout << ss.str(); string转int #include <sstream> int num; string str = " 阅读全文
摘要:
std::vector<std::string> stringSplit(const std::string& str, char delim) { std::size_t previous = 0; std::size_t current = str.find(delim); std::vecto 阅读全文