双指针不能像字典一样用吗?

Can't the double pointer be used like a dictionary?

我正在努力使主题更贴切

char test;
char* testPtr = &test;
char** testPPtr;
testPptr = new char* [100];


for (int i = 0; i < 5; i++) {
    cin >> testPtr;
    testPPtr[i] = testPtr; // math, eng, history, kor, science
}
for (int j = 0; j < 5; j++) {
    cout << testPPtr[j] << endl;
}

我认为

testPPtr[0] is assigned to math

testPPtr[1] is assigned to eng

testPPtr[2] is assigned to history

但是,所有双指针都被赋值最后一次存储的值(科学)。

为什么会这样?

我试过这段代码,但失败了。

char test;
char* testPtr = &test;
char** testPPtr;
testPptr = new char* [100];


for (int i = 0; i < 5; i++) {
    cin >> testPtr;
    testPPtr[i] = new char[100];
    testPPtr[i] = testPtr;
}
for (int j = 0; j < 5; j++) {
    cout << testPPtr[j] << endl;
}

如有任何帮助,我将不胜感激:)

cin >> testPtr; 有未定义的行为。它尝试在 test.

之后写入字符

即使你解决了这个问题,例如通过声明std::string test;,你的程序中只有一个字符串,所以所有的指针都指向同一个地方。

std::vector<std::string> subjects(5); // Creates 5 empty strings

for (std::string & subject : subjects)
{
    std::cin >> subject; // Read each subject in
}

for (const std::string & subject : subjects)
{
    std::cout << subject; // Write each subject out
}