為了確定 C 函數傳回的多維數組的形狀,請使用以下步驟:使用 size() 確定陣列的行數。使用 shape()[0] 或 arr[0].size() 確定陣列的列數。
使用Size-Shape 特性決定C 函數傳回多維數組的形狀
當從C 函數傳回多維數組時,需要確定數組的形狀,以便正確處理數組元素。以下是如何使用size() 和shape() 方法來確定形狀:
#include <iostream> #include <vector> using namespace std; vector<vector<int>> create_2d_array(int rows, int cols) { vector<vector<int>> arr(rows, vector<int>(cols)); return arr; } int main() { // 创建一个 3x4 的二维数组 vector<vector<int>> arr = create_2d_array(3, 4); // 获取数组的形状 int rows = arr.size(); int cols = arr[0].size(); // 访问数组元素 for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { cout << arr[i][j] << " "; } cout << endl; } return 0; }
輸出:
0 0 0 0 0 0 0 0 0 0 0 0
在這個範例中,create_2d_array
函數傳回一個3x4 的二維數組,size()
和shape()
方法用於確定數組的形狀,從而可以正確存取數組元素。
以上是C++ 函數在傳回多維數組時如何確定形狀?的詳細內容。更多資訊請關注PHP中文網其他相關文章!