QScopedValueRollback 类当销毁时将变量重置为其先前值。 更多...
头: | #include <QScopedValueRollback> |
CMake: |
find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core) |
qmake: | QT += core |
QScopedValueRollback (T & var ) | |
QScopedValueRollback (T & var , T value ) | |
~QScopedValueRollback () | |
void | commit () |
The QScopedValueRollback class can be used to revert state when an exception is thrown without needing to write try-catch blocks.
It can also be used to manage variables that are temporarily set, such as reentrancy guards. By using this class, the variable will be reset whether the function is exited normally, exited early by a return statement, or exited by an exception.
The template can only be instantiated with a type that supports assignment.
另请参阅 QScopedPointer and QScopeGuard .
[explicit constexpr]
QScopedValueRollback::
QScopedValueRollback
(
T
&
var
)
Stores the previous value of var internally, for revert on destruction.
[explicit constexpr]
QScopedValueRollback::
QScopedValueRollback
(
T
&
var
,
T
value
)
赋值 value to var and stores the previous value of var internally, for revert on destruction.
[constexpr]
QScopedValueRollback::
~QScopedValueRollback
()
Assigns the previous value to the managed variable. This is the value at construction time, or at the last call to commit ()
[constexpr]
void
QScopedValueRollback::
commit
()
Updates the previous value of the managed variable to its current value.