此代码使用 while 循环来获取用户输入并执行适当的命令 - 为了简洁起见,我将其减少为 2 个命令。
正确创建了 Oblock 对象(命令“O”),以及指向基类的指针。看来对这两个对象的调用也可以正常工作。但是,在返回 while 循环后,指向对象的指针似乎丢失了,并且尝试访问其成员(命令“t”)会导致段错误。我已经包含了下面的示例代码 - 我的问题是之后。
#include<vector>
#include<iostream>
#include<string.h>
using namespace std;
class Tetramino {
private:
int squareSize;
vector<string> myShape;
public:
void setValues(int size) {
squareSize = size;
myShape = vector<string> ((size*size), ".");
}
string getValues(int i) {
return myShape[i];
}
int getSize() {
return squareSize;
}
};
class Oblock : public Tetramino {
public:
Oblock() {
setValues(2);
}
};
main () {
string input;
bool runProgram = true;
Tetramino *pBlock;
while (runProgram) {
cin >> input;
if (input == "O")
{
Oblock myBlock;
cerr << "0thi: " << myBlock.getValues(0) << endl;
Tetramino *pBlock = &myBlock;
cerr << "0thi: " << pBlock->getValues(0) << endl;
}
if (input == "t")
{
cerr << "0thi: " << pBlock->getValues(0) << endl;
}
}
return 0;
}
- 对象是否在退出 if 语句时解构?
- 是否有更好的方法来重复获取用户输入?
提前感谢您的任何建议!我搜索了与此类似的问题,但找不到适合我需要的问题。