三葉蟲也能學(xué)會(huì)的C#零基礎(chǔ)入門教程 01
https://b23.tv/vIYFnNC 1、運(yùn)行首個(gè)C#程序 Console.WriteLine("Hello World!"); 語句是代碼最小有意義單元,C#語句以分號(hào)作為結(jié)尾 Console表示控制臺(tái)窗口類型 WriteLine()是Console類型的方法 方法:方法又叫做函數(shù),此處的函數(shù)是Console.WriteLine(),意義是Console類型當(dāng)中,有一個(gè)類型函數(shù)叫做Console.WriteLine() 類型:即class,現(xiàn)在可以認(rèn)為它是一種抽象的概念;在代碼中則是儲(chǔ)存特定數(shù)據(jù)和組織類似操作結(jié)構(gòu) 這里的這個(gè)類叫做Console,而Console.WriteLine()就是Console類的函數(shù)或者說方法 所謂參數(shù)是函數(shù)運(yùn)行時(shí)所需要的變量,只要改變參數(shù)的輸入,函數(shù)的輸出結(jié)果就會(huì)隨之發(fā)生改變 文本的string類型,與console類型一樣,string類型也包括方法,string類型處理的是文本 2、聲明和使用變量 所謂變量就是在程序運(yùn)行中,其值可以發(fā)生改變的量 我們使用一個(gè)名字來定義一個(gè)抽象的東西,此后我們只要在代碼中再用到這個(gè)名字,就是指的我們剛才定義的東西;我們只需要對(duì)它進(jìn)行賦值,則此后用到它的時(shí)候,等價(jià)于用到我們賦的那個(gè)值 等號(hào)不是等于的意思,而是賦值的意思;相當(dāng)于我們定義一個(gè)aFriend,它是某某 string aFriend = "某某"; Console.WriteLine(aFriend); 可見Console.WriteLine(aFriend)和Console.WriteLine("某某")是等價(jià)的,因?yàn)槲覀儗?duì)aFriend這個(gè)變量進(jìn)行了賦值,其值等于某某 string aFriend = "某某"; aFriend = "某某"; Console WriteLine(aFriend); 這個(gè)邏輯和我們剛才對(duì)aFriend賦值為某某是一樣的,我們把a(bǔ)Friend值修改為某某,此時(shí)我們不再需要修改Console.WriteLine,因?yàn)槲覀兊淖兞縜Friend它的值已經(jīng)發(fā)生變化,我們只需要繼續(xù)打印這個(gè)結(jié)果,剛才的語句叫賦值語句 賦值語句有兩種結(jié)構(gòu) 第一種定義及賦值,對(duì)于我們尚未定義過的變量,我們必須對(duì)其先進(jìn)行定義此時(shí)的語句結(jié)構(gòu)是這樣的:變量類型 變量名 賦值操作符 值 分號(hào) 語句結(jié)束 這里的string就是變量類型,這個(gè)類型叫做字符串,也就是文本字符 當(dāng)我們對(duì)已經(jīng)定義的變量進(jìn)行賦值的時(shí)候,不需要再對(duì)它的類型進(jìn)行定義,只需要對(duì)它直接進(jìn)行賦值 string aFriend = "某某"; aFriend = "某某"; Console WriteLine("hello " + aFriend); 變量的值總是取最近的一次賦值,當(dāng)我們代碼從上到下運(yùn)行的時(shí)候,最后的一個(gè)賦值將會(huì)是它最新的這個(gè)值 string aFriend = "某某"; aFriend = "某某"; Console WriteLine($"hello {aFriend} "); 3、使用字符串 string firstFriend = "某某"; string secondFriend = "某某"; Console WriteLine($"My friends are {firstFriend} and {secondFriend}"); Length是字符串的屬性,可以返回字符串的字符數(shù) 1 string firstFriend = "某某"; 2 string secondFriend = "某某"; 3 Console WriteLine($"My friends are {firstFriend} and {secondFriend}"); 4 Console WriteLine($"The name {firstFriend} has {firstFriend.Length}"); 屬性可以理解成是一個(gè)對(duì)象的一個(gè)值,或者是它的一個(gè)數(shù)據(jù) 1 string firstFriend = "某某"; 2 string secondFriend = "某某"; 3 Console WriteLine($"My friends are {firstFriend} and {secondFriend}"); 4 Console WriteLine($"The name {firstFriend} has {firstFriend.Length} letters."); 5 Console WriteLine($"The name {secondFriend} has {secondFriend.Length} letters."); 1 string greeting = " hello world! "; Console.WriteLine($"[{greeting}]"); 2 string trimmedGreeting = greeting.TrimStart(); Console.WriteLine($"[{trimmedGreeting}]); 3 trimmedGreeting = greeting.TrimEnd(); Console.WriteLine($"[{trimmedGreeting}]); 4 trimmedGreeting = greeting.Trim(); Console.WriteLine($"[{trimmedGreeting}]); 修改字符串的時(shí)候,并不是在原始的字符串上進(jìn)行修改,即使我們最終修改完成以后,greeting并沒有發(fā)生變化 當(dāng)我們使用TrimStart(),TrimEnd()或者Trim()時(shí),我們得到的是一個(gè)新的對(duì)象 string、greeting,這個(gè)greeting,我們把它稱為對(duì)象 字符串里擁有各種屬性方法 1 string sayHello = "Hello world"; 2 Console.WriteLine(sayHelllo); 3 sayHello = sayHello.Replace("Hello","Greeting"); 4 Console.WriteLine(sayHello); 4、發(fā)掘字符串的更多精彩用途 1 string songLyrics = "You say Goodbye,and I say hello"; 2 bool containsGoodbye = songLyrics.Contains("Goodbye"); Console.WriteLine("containsGoodbye"); 布爾值有兩個(gè):true,false 這個(gè)布爾類型和string不太一樣的是它是被稱為一個(gè)值類型的東西 值類型并不是類的對(duì)象