您好,登錄后才能下訂單哦!
這篇文章主要介紹“C#中循環(huán)結(jié)構(gòu)的特點(diǎn)”,在日常操作中,相信很多人在C#中循環(huán)結(jié)構(gòu)的特點(diǎn)問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C#中循環(huán)結(jié)構(gòu)的特點(diǎn)”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
順序、選擇、循環(huán)是一切程序的三大結(jié)構(gòu)。今天我們就來說一說C#中循環(huán)結(jié)構(gòu)的一個小問題。
c#的循環(huán)結(jié)構(gòu)有四種:
for
while…do…
do…while…
foreach
在這四種結(jié)構(gòu)中,都有循環(huán)結(jié)束的判斷。大于某個數(shù)字,小于某個數(shù)字,或者是其他條件表達(dá)式的判斷。今天我們就說一下關(guān)于數(shù)字的判斷。
我們的數(shù)字可能存放在定義好的一個變量中,也可能從是某個集合的長度,也可能是某個方法返回的信息。這里就討論一下某個方法的返回信息。
假定存在下面的一個方法,返回值是一個List<int>
static List<int> GetIntList() { Console.WriteLine("第 {0} 進(jìn)入GetIntList方法",Counter); Counter++; return new List<int>(){ 1,2,3,4,5}; }
需要對這個方法的返回結(jié)果進(jìn)行循環(huán)處理,剛開始大多數(shù)都會這么寫,以for循環(huán)為例。
for (int i = 0; i < GetIntList().Count; i++) { }
后來知道的多了一些,或者是聽到別人說,經(jīng)過自己的驗(yàn)證。發(fā)現(xiàn)這個循環(huán)判斷條件有問題,每次判斷都會重新調(diào)用GetIntList方法,造成極大地浪費(fèi)。就會修改成下面的樣子。
int len=GetIntList().Count; for (int i = 0; i < len; i++) { }
先定義一個變量,保存集合的長度。
經(jīng)過驗(yàn)證,while…do、do…while也存在類似的問題,也需要注意。
有時候我們需要做的就是對集合里面的每個元素進(jìn)行處理,我們會選用foreach這個便利的循環(huán)結(jié)構(gòu),因?yàn)樗挥每紤]下標(biāo)越界的問題。從上面的驗(yàn)證結(jié)果看,就會有人說下面的代碼有問題。
foreach (int i in GetIntList()) { }
到底有沒有問題呢?需要驗(yàn)證。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Common; using System.Configuration; using MongoDB.Driver; using AutoTest.ServiceLocator; using System.Reflection; using AutoTest.Common; namespace AutoTest { class Program { static void Main(string[] args) { Console.WriteLine("------------------------------Begin------------------------------"); Console.WriteLine("Foreach循環(huán)"); Counter = 1; foreach (int i in GetIntList()) { } Console.WriteLine("For循環(huán)"); Counter = 1; for (int i = 0; i < GetIntList().Count; i++) { } Console.WriteLine("do...while...循環(huán)"); Counter =1; int num=0; do { num++; } while (num < GetIntList().Count ); Console.WriteLine("while...do...循環(huán)"); Counter = 1; num=0; while (num < GetIntList().Count) { num++; }; Console.WriteLine("------------------------------End------------------------------"); Console.ReadKey(); } static int Counter=1; static List<int> GetIntList() { Console.WriteLine("第 {0} 進(jìn)入GetIntList方法",Counter); Counter++; return new List<int>(){ 1,2,3,4,5}; } } }
其實(shí)經(jīng)過驗(yàn)證,發(fā)現(xiàn),foreach不同于其他三個循環(huán)結(jié)構(gòu),是不會發(fā)生重復(fù)的GetIntList方法調(diào)用的。
到此,關(guān)于“C#中循環(huán)結(jié)構(gòu)的特點(diǎn)”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。