在C++中,動態數組可以使用new運算符來創建,并使用賦值運算符=來賦值。以下是一種常見的方法:
int size = 5; // 數組大小 int* arr = new int[size]; // 創建動態數組并分配內存
for (int i = 0; i < size; i++) { arr[i] = i + 1; // 給數組元素賦值 }
注意:在使用完動態數組后,需要使用delete運算符釋放內存。
delete[] arr; // 釋放動態數組內存
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529