1樓:昝素花虞女
string是c#中的類,string是.netframework的類(在c#ide中不會顯示藍色)
c#string對映為.netframework的string
如果用string,編譯器會把它編譯成string,所以如果直接用string就可以讓編譯器少做一點點工作
如果使用c#,建議使用string,比較符合規範
string始終代表system.string(1.x)或::
system.string(2.0),string只有在前面有usingsystem;的時候並且當前名稱空間中沒有名為string的型別(class、struct、delegate、enum)的時候才代表system.
string
string是關鍵字,string不是,也就是說string不能作為類、結構、列舉、欄位、變數、方法、屬性的名稱,而string可以
2樓:林夏勤緞
api:
string
建構函式
(char,
int32)
將string
類的新例項初始化為由重複指定次數的指定
unicode
字元指示的值。
public
string
(char
c,int
count)引數
c一個unicode
字元。count
c出現的次數。
那個int應該有個具體值才對
比如stringa=
newstring
('-',10);
c 裡面return的用法,c 裡面的return到底有什麼用?什麼時候需要用到
具體的 舉例說明吧 比較兩個數的大小,返回1,代表x y,返回0代表兩個數相等,返回 1,代表xy if x y if xy?1 1 int main void 現在來說return return 有兩種 1,函式結束不滿足當前的值return,2,函式執行晚可以用return 比如 void ad...
c 中string陣列的問題,C 中string陣列的問題
string並不是c 的基本資料型別。它是標準庫裡宣告的一個字串類。所以樓主的答案是 可以。string str 10 定義一個字串陣列str顯示的是 i love you 還可以這樣定義字串陣列 string name 5 可以賦值啊。include include using namespace...
c提取字串裡面的數字,C 提取字串裡面的數字
include include using namespace std int main if i s.length break if s i 確定正負號 sign 1 if s i 確定正負號 sign 1 i value 0 while i include include const int l...