03 2022 档案
摘要:/* MSVC调试有效 __debugbreak(),调试中断 __FILE__,文件路径 __LINE__,行号 */ #define ASSERT(x) if(!(x)) __debugbreak(); #define GLCall(x) GLClearError();\ x;\ ASSERT(
阅读全文
摘要:mysql -uroot -pword; // 管理员帐号登陆,root帐号,word密码 mysql> GRANT ALL ON *.* TO 'user1'@localhost IDENTIFIED BY 'password'; //user1帐号,password密码
阅读全文