gpt4 book ai didi

C++ 字符串声明

转载 作者:可可西里 更新时间:2023-11-01 14:54:18 26 4
gpt4 key购买 nike

我使用 VB 已有一段时间了。现在我正在试一试 C++,我遇到了字符串,我似乎找不到声明字符串的方法。

例如在 VB 中:

Dim Something As String = "Some text"

或者

Dim Something As String = ListBox1.SelectedItem

上面的代码在 C++ 中的等价物是什么?

感谢任何帮助。

最佳答案

C++ 提供了一个 string可以像这样使用的类:

#include <string>
#include <iostream>

int main() {
std::string Something = "Some text";
std::cout << Something << std::endl;
}

关于C++ 字符串声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10218714/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com