move_semantics.cpp

C++上級

Explorer

C40
C++
初級10
中級10
上級10
smart_pointer.cpp
template_class.cpp
lambda_capture.cpp
range_loop.cpp
operator_overload.cpp
move_semantics.cpp
constexpr_func.cpp
virtual_inherit.cpp
stream_operator.cpp
optional_type.cpp
エキスパート5
マスター5
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python40
R40
Ruby40
Rust40
Shell40
Swift40
TypeScript40
move_semantics.cpp
Click to focus
1
2
3
Vector(Vector&& other) noexcept
   : data_(std::exchange(other.data_, nullptr)),
     size_(std::exchange(other.size_, 0)) {}
0WPM0%0:000/125(0%)|Ln 1, Col 1
UTF-8C++

関連する練習問題