當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ String c_str()用法及代碼示例


此函數返回一個指向包含空終止字符序列的數組的指針。

用法

考慮一個字符串 str。語法是:

str.c_str();

參數

它不包含任何參數。

返回值

它返回一個指向字符串對象值的 c-string 表示的指針。

示例

讓我們看一個簡單的例子。

#include<iostream>
#include<cstring>
#include<string>
using namespace std;
int main()
{
 string str="Computer is my favorite subject";
 char* ch=new char[str.length()+1];
 strcpy(ch,str.c_str());
 cout<<"String value is:"<<ch;
return 0;
}

輸出:

String value is:Computer is my favorite subject





相關用法


注:本文由純淨天空篩選整理自 C++ String c_str()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。