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.
写如下内容是否合法?如果得到肯定的回答,你会这样做吗?
vector<int> create_vector() { vector<int> v; ... return v;} for ( auto i : create_vector() ) { ... }