有几个用的 C++ 在线工具就是不一样


  1. 支持多种编程语言 * 多个编译器版本在线编译运行的网站。
  2. 可以在这里做方便、快速地一些小实验、尝试一些编程语言的新特性,比如 C++20。

图片

Wandbox

Quick C++ Benchmark[2]

  1. 可以快速对一些 C++ 代码片段进行 benchmark 并可视化显示出来。
  2. 支持多个版本的 clang 和 gcc。
  3. 背后用的应该是 google benchmark[3] 这个开源库,你也可以在自己的机器上安装这个库。

图片

Quick C++ Benchmark

Compiler Explorer[4]

  1. 支持将 C++ 代码编译成汇编代码。
  2. 支持多种编译器版本 * 多种 CPU 平台(x86-64、MIPS、ARM 等)。

图片

Compiler Explorer

Compare C++ Builds[5]

  1. 可以测试、比较不同 C++ 代码的编译开销(CPU、内存、I/O)

图片

Compare C++ Builds

C++ Insights[6]

  1. 主要用于看代码编译展开后的具体情况,是个学习 C++ 模板时不错的辅助工具。

图片

C++ Insights

参考资料

[1]

Wandbox: _https://wandbox.org/_

[2]

Quick C++ Benchmark: _https://quick-bench.com/q/eP4...

[3]

google benchmark: _https://github.com/google/ben...

[4]

Compiler Explorer: _https://gcc.godbolt.org/_

[5]

Compare C++ Builds: _https://build-bench.com/b/47c...

[6]

C++ Insights: _https://jq.qq.com/?_wv=1027&k...

你可能感兴趣的:(c++,后端,chrome)