Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在什么情况下我应该在 C++ 中使用临时对象?这个概念有什么好处?
任何人都可以用一些例子来解释这一点吗?
当值不需要超出语句块或函数定义的范围时,应使用临时变量。
有例外:
for
定位变量(范围)的一些经验法则或指南:
HTH。