溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C#數(shù)組和串操作有哪些

發(fā)布時間:2021-12-01 09:59:27 來源:億速云 閱讀:123 作者:iii 欄目:編程語言

這篇文章主要介紹“C#數(shù)組和串操作有哪些”,在日常操作中,相信很多人在C#數(shù)組和串操作有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C#數(shù)組和串操作有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

關(guān)于C#數(shù)組和C#串操作:
1)串是由連續(xù)存儲的字符組成
2)C#中的串具有恒定不變的特性,即 一旦被創(chuàng)建,就不能改變長度或者改變其中任何的字符。
3)串的連接、插入和刪除等操作都是生成了新串而沒有改變原串。
4)繼承自 System.object。所以是引用類型(int,bool,char 等都是struct 不是class,是值類型)。
5)System.String 是密封類,所以不能被繼承。
6)雖然System.String 是引用類型,但C#中將String 看作是基元類型,所以不用 new操作符創(chuàng)建實例,而是使用字符串駐留的機制。
7)System.String 繼承自 IComparable, ICloneable, IConvertible, IComparable, IEnumerable, IEnumerable, IEquatable。
8)C#提供了StringBuilder類型來支持高效地動態(tài)創(chuàng)建字符串。

下面是自定義一個string類,類中包含一個字段,用以存放字符序列的C#數(shù)組,還有一些常用的C#串操作。

public class StringDS  {  private char[] data;//char數(shù)組  //索引器  public char this[int index]  {  get   {  return data[index];  }  set  {  data[index] = value;  }  }  //構(gòu)造函數(shù)  public StringDS(char[] arr)  {  data = new char[arr.Length];  for (int i = 0; i < arr.Length; i++)  {  data[i] = arr[i];  }  }  //構(gòu)造函數(shù)   public StringDS(int len)  {  char[] arr = new char[len];  data = arr;  }  //求串長   public int GetLength()  {  return data.Length;  }   //串比較   public int Compare(StringDS s)   {  int len=((this.GetLength()<=s.GetLength())?   this.GetLength():s.GetLength());   int i = 0;   for (i = 0; i < len; ++i)   {   if (this[i] != s[i])   {   break;   }   }   if (i <= len)  {  if (this[i] < s[i])  {  return -1;  }  else if (this[i] > s[i])  {  return 1;  }  }  else if (this.GetLength() == s.GetLength())  {  return 0;  }  else if (this.GetLength() < s.GetLength())  {  return -1;  }   return 1;  }   //求子串   public StringDS SubString(int index, int len)   {   if ((index<0) || (index>this.GetLength()-1) || (len<0) || (len>this.GetLength()-index))   {   Console.WriteLine("Position or Length is error!");   return null;   }    StringDS s = new StringDS(len);    for (int i = 0; i < len; ++i)   {   s[i] = this[i + index-1];   }    return s;   }   //串連接   public StringDS Concat(StringDS s)  {  StringDS s1 = new StringDS(this.GetLength() +s.GetLength());  for (int i = 0; i < this.GetLength(); ++i)  {  s1.data[i] = this[i];  }   for (int j = 0; j < s.GetLength(); ++j)  {  s1.data[this.GetLength() + j] = s[j];  }   return s1;  }   //串插入   public StringDS Insert(int index, StringDS s)   {   int len = s.GetLength();   int lenlen2 = len + this.GetLength();   StringDS s1 = new StringDS(len2);   if (index < 0 || index > this.GetLength() - 1)   {   Console.WriteLine("Position is error!");   return null;   }   for (int i = 0; i < index; ++i)   {   s1[i] = this[i];   }   for(int i = index; i < index + len ; ++i)   {   s1[i] = s[i - index];   }   for (int i = index + len; i < len2; ++i)   {   s1[i] = this[i - len];   }  return s1;  }  //串刪除   public StringDS Delete(int index, int len)  {  if ((index < 0) || (index > this.GetLength() - 1)  || (len < 0) || (len > this.GetLength() - index))  {  Console.WriteLine("Position or Length is error!");  return null;  }   StringDS s = new StringDS(this.GetLength() - len);   for (int i = 0; i < index; ++i)  {  s[i] = this[i];  }   for (int i = index + len; i < this.GetLength(); ++i)  {  s[i] = this[i];  }   return s;  }   //串定位   public int Index(StringDS s)   {   if (this.GetLength() < s.GetLength())   {   Console.WriteLine("There is not string s!");   return -1;   }      int i = 0;   int len = this.GetLength() - s.GetLength();   while (i < len)   {   if (this.Compare(s) == 0)   {  break;  }  }   if (i <= len)  {  return i;  }   return -1;  }   }

到此,關(guān)于“C#數(shù)組和串操作有哪些”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI