12 2021 档案

摘要:typedef DWORD64 hash_t; // 这个长度会溢出constexpr hash_t prime = 0x100000001B3ull;constexpr hash_t basis = 0xCBF29CE484222325ull;inline hash_t hash_(const c 阅读全文
posted @ 2021-12-11 21:28 FAiBG 阅读(145) 评论(0) 推荐(0)
摘要:1)在Unicode 中 Char 可以看作 ASCII , 如果要打印或显示时,要进行转换 m_COM2.ReadBuffer(buf, MAX_PATH); m_str.Format(_T("COM2=%s\r\n"), m_SuperStr.AnsiToUnicode(buf)); //Ans 阅读全文
posted @ 2021-12-07 22:46 FAiBG 阅读(285) 评论(0) 推荐(0)
摘要:学习及总结 2021 12 05 在使用控件时,要注意 名字可加入数据编号 同时注意大小写,是区分的, 控件的Name 这样会报错 <ProgressCircle name="cprogress01" /> OK <ProgressCircle name="cprogressA" /> NG m_p 阅读全文
posted @ 2021-12-05 23:51 FAiBG 阅读(704) 评论(0) 推荐(0)