gpt4 book ai didi

c++ - 如何在 C++ 中将字符串分配给 char *pw

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:06:00 25 4
gpt4 key购买 nike

如何在 C++ 中将字符串分配给 char *pw

喜欢...

char *pw = 一些字符串

??

最佳答案

对于常量初始化,你可以简单地使用

const char *pw = "mypassword";

如果字符串存储在一个变量中,而您需要复制该字符串,那么您可以使用 strcpy() 函数

char *pw = new char(strlen(myvariable) + 1);
strcpy(pw, myvariable);
// use of pw
delete [] pw; // do not forget to free allocated memory

关于c++ - 如何在 C++ 中将字符串分配给 char *pw,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2235366/

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