How does switch compile in Visual C++ and how optimized and fast is it?(在 Visual C++ 中 switch 是如何编译的,它的优化和速度如何?)
问题描述
当我发现我只能在 C++ 的 switch
语句中使用数值时,我认为它与一堆 if-else代码>的.
As I found out that I can use only numerical values in C++'s switch
statements, I thought that there then must be some deeper difference between it and a bunch of if-else
's.
因此我问自己:
- (如何)
switch
与if-elseif-elseif
在运行速度、编译时间优化和一般编译方面有何不同?我在这里主要说的是 MSVC.
- (How) does
switch
differ fromif-elseif-elseif
in terms of runtime speed, compile time optimization and general compilation? I'm mainly speaking of MSVC here.
推荐答案
一个开关经常被编译成一个跳转表(一个比较来找出要运行的代码),或者如果这不可能,编译器可能仍然对比较重新排序,以便在值之间执行二分搜索(log N 比较).if-else 链是线性搜索(尽管我想,如果所有相关值都是编译时积分常量,编译器原则上可以执行类似的优化).
A switch is often compiled to a jump-table (one comparison to find out which code to run), or if that is not possible, the compiler may still reorder the comparisons, so as to perform a binary search among the values (log N comparisons). An if-else chain is a linear search (although, I suppose, if all the relevant values are compile-time integral constants, the compiler could in principle perform similar optimizations).
这篇关于在 Visual C++ 中 switch 是如何编译的,它的优化和速度如何?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Visual C++ 中 switch 是如何编译的,它的优化和速
基础教程推荐
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01