用户资料:TwilightSpectre

用户信息
用户名TwilightSpectre
曾用用户名NT3
地点澳大利亚,新南威尔士州,悉尼
个人简介一个程序员。喜欢随机阅读、写作、解决问题、制造麻烦以及各种各样的恶作剧。
统计数据
性别
职业程序员
技能C
PHP
C++
Perl
汇编
Java
Javascript
Python
Haskell
历史记录
加入时间
帖子数量1392
最新帖子

Visual Studio 2022 发布公告
[quote=Ganado]这完全打破了奇数年隔一年发布的模式。[/quote] 不要怪他们,...

对“using namespace std;”的另一种看法
技术上来说,结果是未定义的;请参阅 https://timsong-cpp.github.io/cppwp/n4659/headers#4 [quot...

C++ 单元测试
我非常喜欢 Catch2:https://github.com/catchorg/Catch2

泛型函数的返回类型
你也可以让 [tt]Iter[/tt] 被推导出来。[code] template <typename ReturnType, typename Ite...

如何在 std::set 中使用不同的类型查找值
你可以使用透明比较器,例如 [tt]std::less<>[/tt]:[code] #include <iostream> #incl...