<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);"><span style="font-size:18px;">这里总结一些c++常遇到的问题</span></span>
不同类型之间的转换。
<span style="font-size:18px;">//1 string --> const char* std::string s_1 = "lsw"; const char *cs_1 = s_1.c_str(); printf("const char * cs is %s ", cs_1); //2 const char* --> string const char *cs_2 = "lsw"; std::string s_2(cs_2); printf("std::string s_2 is %s ", s_2.c_str()); //3 string --> char* std::string s_3 = "lsw"; char *cs_3; auto len = s_3.length(); cs_3 = new char[len + 1]; char *res_3 = strcpy(cs_3, s_3.c_str()); printf("string to char* === %s", res_3); //4 char* --> string char *cs_4 = "lsw"; //c++ 11标准中这里有警告,不推荐这么用 std::string s_4(cs_4); //5 const char* --> char * const char* cs_5 = "lsw"; char *cs_6 = new char[100];//足够大 char *res_5 = strcpy(cs_6, cs_5); </span><p class="p1"><span style="font-size:18px;"><span class="s1"> printf</span><span class="s2">(</span>"cs_6 = %s "<span class="s2">, cs_6);</span></span></p><p class="p1"><span class="s2"><span style="font-size:18px;"> </span></span></p>
string, const char* ---> int, double, long
<span style="font-size:18px;">double atof(const char *); int atoi(const char *); long atol(const char *);</span>
int --- > string
<span style="font-size:18px;"> char buff[100]; sprintf(buff, "%d", 990); std::string sb = buff;</span>
已知strcpy的函数原型:char *strcpy(char *strDest, const char *strSrc)其中strDest 是目的字符串,strSrc 是源字符串。不调用C++/C 的字符串库函数,请编写函数 strcpy
/** 已知strcpy函数的原型是 char *strcpy(char *strDest, const char *strSrc); 其中strDest是目的字符串,strSrc是源字符串。 (1)不调用C++/C的字符串库函数,请编写函数 strcpy (2)strcpy能把strSrc的内容复制到strDest,为什么还要char * 类型的返回值? 答:为了 实现链式表达式。 例如 int length = strlen( strcpy( strDest, “hello world”) ); */ char *myStrcpy(char *str1, const char *str2) { assert(str1 != nullptr && (str2 != nullptr)); char *res = str1; while ((*str1++ = *str2++) != '