Variable assignment in quot;ifquot; condition(“if中的变量赋值状况)
问题描述
我最近浪费了一些时间来找出我的代码中的错误,该错误是由打字错误引起的:
I recently just lost some time figuring out a bug in my code which was caused by a typo:
if (a=b)
代替:
if (a==b)
我想知道是否有任何特殊情况您希望在 if
语句中为变量赋值,或者如果没有,为什么编译器不抛出警告或错误?
I was wondering if there is any particular case you would want to assign a value to a variable in a if
statement, or if not, why doesn't the compiler throw a warning or an error?
推荐答案
if (Derived* derived = dynamic_cast<Derived*>(base)) {
// do stuff with `derived`
}
尽管这经常被引用为反模式(使用虚拟调度!"),但有时 Derived
类型具有 Base
根本没有的功能(并且,因此,不同的功能),这是打开这种语义差异的好方法.
Though this is oft cited as an anti-pattern ("use virtual dispatch!"), sometimes the Derived
type has functionality that the Base
simply does not (and, consequently, distinct functions), and this is a good way to switch on that semantic difference.
这篇关于“if"中的变量赋值状况的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“if"中的变量赋值状况
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01