Modern C++ Learning(1)-Fundamental Types
Fundamental TypesVariable Declarationstype variable = value;type variable {value}; // C++11
Quick OverviewSigned Integerslong l1 = -7856974990L;long long l2 = 89565656974990LL;// ' digit separator C++14long l3 = 512'232'697'499;
Unsigned Integersunsigned u1 = 12347U; unsigned long u2 = 123478912345UL; unsigned long long u3 = 123478912345ULL; // non-decimal literalsunsigned x = 0x4A; // hexadecimalunsigned b = 0b10110101; // binary C++14
Floating Point Typesfloat ...
Z-Library 免费电子书资源
经亲身测试,下述网站失效,最新可用网址是 https://zh.z-library.rs/
https://zh.zlibrary-tw.se/
各种各样的电子书都有,可以免费下载
毕业际随想
今天是6月8日,高考结束的日子,看着直播中刚考完试的学子们,我不禁感慨,大学四年时间过得很快,此时此刻我竟已临近毕业了。现在升学 ...
UCB CS186 数据库系统概论 学习笔记(0)
正式开始之前由于自己本科专业不是计算机科班出身,所以自觉有许多计算机专业课需要补,我想数据库相关知识应该也非常重要。首先推荐 ...
ChatGPT国内注册方法
前段时间,我注册了一个ChatGPT账号,用了一段时间,感觉挺好用的,尤其是在解决代码相关的问题方面很有效。目前,它辅助我完成了毕业设计v ...
个人博客搭建经验分享
这两天闲着没事搭建了一个个人博客,现在记录搭建的过程分享出来。基于 Hexo 框架,采用 Butterfly 主题,评论系统采用 Giscus
感觉比较难写,就先放几个 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post$ hexo new "My New Post"
More info: Writing
Run server$ hexo server
More info: Server
Generate static files$ hexo generate
More info: Generating
Deploy to remote sites$ hexo deploy
More info: Deployment