我正在尝试通过 C++ 中的引用将动态分配的 2d 向量传递给函数。
最初我试图使用 2d 数组来执行此操作,但有人告诉我尝试使用 2d 向量。由于转换错误,我下面的代码在 solve_point(boardExVector) 行失败。
#include <stdio.h> /* printf */
#include <bits/stdc++.h> /* vector of strings */
using namespace std;
void solve_point(vector<char> *board){
printf("solve_point\n");
board[2][2] = 'c';
}
int main(){
//dynamically allocate width and height
int width = 7;
int height = 9;
//create 2d vector
vector<vector<char>> boardExVector(width, vector<char>(height));
boardExVector[1][2] = 'k';
//pass to function by reference
solve_point(boardExVector);
//err: no suitable conversion function from "std::vector<std::vector<char, std::allocator<char>>, std::allocator<std::vector<char, std::allocator<char>>>>" to "std::vector<char, std::allocator<char>> *" exists
printf("board[2][2] = %c\n", boardExVector[2][2]);
}
我刚刚回到 c++ 中,所以指针和引用是我正在努力改进的东西,我已经在网上寻找解决方案,并且已经尝试了一些通常涉及更改 solve_point 函数头以包含 * 或&但我还没有让它工作。任何帮助表示赞赏。谢谢