Last active
August 10, 2020 01:34
-
-
Save domiyanyue/5a5143682562befa430c3e837fd4a54a to your computer and use it in GitHub Desktop.
RAII Example 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int demo1(){ | |
A *a = new A(); | |
int r = a -> func(); | |
delete a; | |
return r; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment