內存管理

內存的本質是資源,由操做系統分配。 在代碼中申請和歸還內存。 ios 在c++中申請內存new 釋放內存delete.c++ #include "stdafx.h" #include <iostream> using namespace std; int main() { int *p = new int; *p = 20; if (p!=NULL) {
相關文章
相關標籤/搜索