- 相關(guān)推薦
學(xué)習(xí).net心得
1.命名空間:命名空間是一種特殊的分類機(jī)制,它將與特定功能集有關(guān)的所有類型都分到一起,是.net避免類
名沖突的一種方式。
2.變量的作用域:一個(gè)變量的作用域是指能夠使用該變量的程序區(qū)域。for、while或類似語(yǔ)句中聲明的局部變
量存在于該循環(huán)體內(nèi)。
(1)字段和局部變量的作用域沖突:
class Program
{
int n=0;//定義一個(gè)字段
static void main(string[] args)
{
int n=5;//聲明一個(gè)局部變量
Console.WriteLine(n.ToString());//結(jié)果輸出5
}
}
(2)如何引用類級(jí)變量:可以把變量聲明為靜態(tài)的,使用類本身來(lái)訪問(wèn),例如:
static class Process
{
static int n=0;
static void main()
{
int n=2;
Console.WriteLine(Process.n.ToString());//輸出結(jié)果為0
}
}
如果字段不是靜態(tài)的可以使用this來(lái)訪問(wèn),如下:
public class Process
{
public int n=0;
static void main()
{
int n=2;
Console.WriteLine(this.n.ToString());//輸出結(jié)果為0
}
}
3.常量的特征:必須在聲明時(shí)初始化,指定值之后不能再修改;其值必須在編譯時(shí)用于計(jì)算;常量總是靜態(tài)的
,不允許在常量聲明中包含修飾
符static.
4.字符常見(jiàn)的操作:
(1)獲取字符串長(zhǎng)度和所占字節(jié)長(zhǎng)度
string str = "中國(guó)";
Console.WriteLine(str.Length);//輸出2
byte[] bytes = Encoding.Default.GetBytes(str);
Console.WriteLine(bytes.Length);//輸出4
Console.Read();
(2)查找指定位置是否為空字符:Char.IsWhiteSpace(str,n)
string str = "中國(guó) 人民";
Console.Write(char.IsWhiteSpace(str, 2));//輸出為T(mén)rue
(3)查字符是否是標(biāo)點(diǎn)符號(hào)IsPunctuation('字符');
string str = "中國(guó) 人民,";
Console.WriteLine(char.IsPunctuation(str, 5));//True
Console.WriteLine(char.IsPunctuation('A'));//False
Console.WriteLine(char.IsPunctuation(','));//True
(4)刪除字符串最后一個(gè)字符的2種方法:
<1>SubString:
string str1 = "1,2,3,4,5,";
Console.WriteLine(str1.Substring(0, str1.Length - 1));//輸出結(jié)果1,2,3,4,5
<2>TrimEnd:
Console.WriteLine(str1.TrimEnd(','));//輸出結(jié)果1,2,3,4,5
(5)用字符串分割字符串:
string str2 = "aaaajsbbbbjsccc";
string[] sarray = Regex.Split(str2, "js", RegexOptions.IgnoreCase);
foreach (string s in sarray)
{
Console.WriteLine(s);
}
最后輸出結(jié)果為:
aaaa
bbbb
cccc
(6)把字符串123456789轉(zhuǎn)換成12-345-6789的2種方法:
<1> string a = "123456789";
a = int.Parse(a).ToString("##-###-####");
Console.WriteLine(a);//輸出12-345-6789
<2>a=a.Insert(5,"-").Insert(2,"-");
Console.WriteLine(a);//輸出12-345-6789
相關(guān)專題:[手機(jī)]【學(xué)習(xí).net心得】相關(guān)文章:
ASP.NET技術(shù)選型心得04-25
Net Worth:資本凈值05-04
asp.net網(wǎng)上花店畢業(yè)設(shè)計(jì)開(kāi)題報(bào)告04-27
ASP.NET的網(wǎng)站新聞管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn) -文秘文書(shū)12-15
學(xué)習(xí)的心得01-01
Away from Net-bar Campaign遠(yuǎn)離網(wǎng)吧作文(通用15篇)04-10
學(xué)習(xí)新課標(biāo)學(xué)習(xí)心得12-14
學(xué)習(xí)英語(yǔ)心得08-17
學(xué)習(xí)心得04-28
學(xué)習(xí)攝影的心得05-01