如何在C ++中从字符串指针获取字符?

时间:2019-04-17 09:41:26

标签: c++ string pointers pass-by-reference

我正在将std::string指针传递给函数,并且我想使用该指针来访问和修改此字符串中的字符。

目前,我唯一能做的就是使用*运算符打印字符串,但是我不能只访问一个字符。我尝试使用*word[i]*(word + i),其中word是我的指针,iunsigned int

现在我有这个。

#include <iostream>

void shuffle(std::string* word);

int main(int argc, char *argv[])
{
    std::string word, guess;

    std::cout << "Word: ";
    std::cin >> word;

    shuffle(&word);
}

void shuffle(std::string* word)
{
    for (unsigned int i(0); i < word->length(); ++i) {
        std::cout << *word << std::endl;
    }
}

假设我输入了 Overflow 字样,我希望得到以下输出:

Word: Overflow
O
v
e
r
f
l
o
w

我对C ++还是很陌生,我不是英语母语人士,所以请原谅错误。谢谢。

1 个答案:

答案 0 :(得分:5)

您知道自己有一个对象,请通过引用将其传递。然后照常访问对象。

    shuffle(word);
}

void shuffle(std::string& word) // Not adding const as I suppose you want to change the string
{
    for (unsigned int i = 0; i < word.size(); ++i) {
        std::cout << word[i] << std::endl;
    }
}