Created
August 10, 2020 20:41
-
-
Save domiyanyue/d9b097dd13afad0ba952372b6e0e53ab to your computer and use it in GitHub Desktop.
Static memory
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
class A { | |
public: | |
A(int n){ | |
array = new int[n]; | |
} | |
~A(){ | |
delete array; | |
} | |
private: | |
int *array; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment