麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 編程 > C# > 正文

C#常用知識點簡單回顧(有圖有真相)

2020-01-24 03:36:56
字體:
來源:轉載
供稿:網友
1)傳值調用與引用調用
復制代碼 代碼如下:

using System;
class MethodCall
{
public static void Main()
{
/*
* 參數類型分為 in, ref, out 三種,默認為 in。
* in 類型在子方法中修改了對應變量后,主方法中的值不會發生改變。
* ref 類型在子方法中修改了對應變量后,主方法中的值也會發生改變。
* out 主方法中對應的變量不需要初始化。
*
*/
int a = 1, b = 2, c;
Console.WriteLine("Before Method Call : a = {0}, b = {1}, c 未賦值", a, b);
AMethod(a, ref b, out c);
Console.WriteLine("After Method Call : a = {0}, b = {1}, c = {2}", a, b, c);
Console.Read();
}
public static void AMethod(int x, ref int y, out int z)
{
x = 110;
y = 120;
z = 119;
}
}

效果圖:

 2)打印三角形

復制代碼 代碼如下:

using System;
public class Hello
{
public static void Main()
{
Console.Write("請輸入行數:");
int lines = int.Parse(Console.ReadLine());
Console.WriteLine("");
for(int i=1; i<=lines ; i++)
{
for(int k=1; k<= lines-i; k++)
Console.Write(" ");
for(int j=1; j<=i*2+1; j++)
Console.Write("*");
Console.WriteLine("");
}
Console.ReadLine();
}
}

效果圖:

 3)遞歸求階乘

復制代碼 代碼如下:

using System;
class Factor
{
public static void Main()
{
for(int i=1; i<=10; i++)
Console.WriteLine("{0} 的階乘是 {1}",i, Factorial(i));
Console.Read();
}
public static long Factorial(long n)
{
if(n == 1)
return 1;
else
return n * Factorial(n-1);
}
}

效果圖:

4)多態性

復制代碼 代碼如下:

using System;
class Car
{
public virtual void Drive()
{ Console.WriteLine("Drive Car"); }
}
class Truck : Car
{
public override void Drive()
{ Console.WriteLine("Drive Truck"); }
}
class Client
{
public static void Main()
{
Car c = new Truck();
c.Drive(); //多態性決定著將調用Truck的Drive方法
Console.Read();
}
}

效果圖:

5)方法重載

復制代碼 代碼如下:

using System;
class Client
{
public static void Main()
{
//重載是指方法名相同,方法的簽名不同
Console.WriteLine(Add(100,50));
Console.WriteLine(Add("100","50"));
Console.Read();
}
public static string Add(string a, string b)
{
return a + " add " + b;
}
public static int Add(int a, int b)
{
return a+b;
}
}

效果圖:

6)構造函數

復制代碼 代碼如下:

using System;
public class Person
{
public string name = "";
public int age = 0;
//默認構造函數
public Person()
{
}
//構造函數重載(1)
public Person(int Age)
{
this.age = Age;
}
//構造函數重載(2)
public Person(int Age, string Name)
{
this.age = Age;
this.name = Name;
}
public void ShowInfo()
{
Console.WriteLine("姓名:" + name);
Console.WriteLine("年齡:" + age);
}
}
class Client
{
public static void Main()
{
Person p1 = new Person();
p1.ShowInfo();
Console.WriteLine("*************************");
Person p2 = new Person(25);
p2.ShowInfo();
Console.WriteLine("*************************");
Person p3 = new Person(25, "愛智旮旯");
p3.ShowInfo();
Console.Read();
}
}

效果圖:

7)靜態與非靜態

復制代碼 代碼如下:

using System;
class StaticHello
{
public static void SayHello()
{ Console.WriteLine("Static Hello"); }
}
class NonStaticHello
{
public void SayHello()
{ Console.WriteLine("Non Static Hello"); }
}
class Client
{
public static void Main()
{
//靜態方法調用應當使用 “類名.方法”
StaticHello.SayHello();
//非靜態方法調用應當使用 “實例名稱.方法”
NonStaticHello h = new NonStaticHello();
h.SayHello();
Console.Read();
}
}

效果圖:

8)九九表

復制代碼 代碼如下:

using System;
public class JiuJiuBiao
{
public static void Main(string[] args)
{
int i,j;
for(i=1; i<10; i++)
{
for(j=1; j<10; j++)
{
Console.Write("{0:D1}*{1:D1}={2,2} ", i, j, i*j);
}
Console.WriteLine("");
}
Console.ReadLine();
}
}

效果圖:

9)冒泡法排序

復制代碼 代碼如下:

using System;
class ArraySort
{
public static void Main()
{
int[] d = {10,15,21,43,17,98,2,74,63,10};
int temp;
//冒泡法排序
for(int i=0; i<d.Length; i++)
for(int j=i+1; j<d.Length; j++)
if(d[i]<d[j])
{
temp = d[i];
d[i]=d[j];
d[j]=temp;
}
//輸出排序結果
foreach(int i in d)
Console.Write("{0}, ", i);
Console.Read();
}
}

效果圖:

10)求質數

復制代碼 代碼如下:

using System;
class Factor
{
public static void Main()
{
for(int i=1; i<=100; i++)
if(IsPrime(i))
Console.WriteLine(i);
Console.Read();
}
public static bool IsPrime(int n)
{
for(int i=2; i<=Math.Sqrt(n); i++)
if(n%i == 0)
return false;
return true;
}
}

效果圖:

11)使用接口排序(1)

復制代碼 代碼如下:

using System;
using System.Collections;
public class Person : IComparable
{
public int ID;
public string Rank;
public Person(int id, string rank)
{ this.ID=id; this.Rank = rank; }
#region IComparable Members
/*
* IComparable 接口只有一個方法: CompareTo。CompareTo方法
* 只接收一個object類型的參數,這意味著它可以接收任何類
* 型的數據(object是所有類的父類),這個方法會返回一
* 整型數值,含義如下:
*
* 1) 小于零,當前實例(this)小于obj對象
* 2) 等于零,當前實例(this)等于obj對象
* 3) 大于零,當前實例(this)大于obj對象
*
* Int32,Int16...,String,Decimal等數據類型都已經實現了IComparable接口
*/
public int CompareTo(object obj)
{
Person p = (Person)obj;
return this.ID.CompareTo(p.ID);
}
#endregion
}
class SortArrayList
{
static void Main(string[] args)
{
ArrayList list = new ArrayList();
list.Add(new Person(6, "排長"));
list.Add(new Person(3, "團長"));
list.Add(new Person(4, "司令"));
list.Add(new Person(5, "旅長"));
list.Add(new Person(7, "連長"));
list.Add(new Person(1, "軍長"));
list.Add(new Person(2, "營長"));
list.Add(new Person(8, "師長"));
list.Sort();
Console.WriteLine("After Sorting");
foreach (Person person in list)
{
Console.WriteLine("ID: " + person.ID.ToString() + ", Rank: " + person.Rank);
}
}
}

效果圖:

12)使用接口排序(2)

復制代碼 代碼如下:

using System;
using System.Collections;
public enum enuSortOrder
{IDAsc, IDDesc, RankAsc, RankDesc}
public class Person : IComparable
{
public static enuSortOrder intSortOrder = enuSortOrder.IDAsc;
public int ID;
public string Rank;
public Person(int id, string rank)
{ this.ID=id; this.Rank = rank; }
#region IComparable Members
/*
* IComparable 接口只有一個方法: CompareTo。CompareTo方法
* 只接收一個object類型的參數,這意味著它可以接收任何類
* 型的數據(object是所有類的父類),這個方法會返回一
* 整型數值,含義如下:
*
* 1) 小于零,當前實例(this)小于obj對象
* 2) 等于零,當前實例(this)等于obj對象
* 3) 大于零,當前實例(this)大于obj對象
*
* Int32,Int16...,String,Decimal等數據類型都已經實現了IComparable接口
*/
public int CompareTo(object obj)
{
Person p = (Person)obj;
switch ((int)intSortOrder)
{
case (int)enuSortOrder.IDAsc:
return this.ID.CompareTo(p.ID);
case (int)enuSortOrder.IDDesc:
return p.ID.CompareTo(this.ID);
case (int)enuSortOrder.RankAsc:
return RankCompare(this.Rank, p.Rank);
case (int)enuSortOrder.RankDesc:
return RankCompare(p.Rank, this.Rank);
default:
return this.ID.CompareTo(p.ID);
}
}
private int RankCompare(string rank1, string rank2)
{
int intRank1 = ConvertRankToInt(rank1);
int intRank2 = ConvertRankToInt(rank2);
if(intRank1 < intRank2)
return -1;
else if(intRank1 == intRank2)
return 0;
else
return 1;
}
private int ConvertRankToInt(string rank)
{
if(rank == "司令")
return 8;
else if(rank == "軍長")
return 7;
else if(rank == "師長")
return 6;
else if(rank == "旅長")
return 5;
else if(rank == "團長")
return 4;
else if(rank == "營長")
return 3;
else if(rank == "連長")
return 2;
else
return 1;
}
#endregion
}
class SortArrayList
{
static void Main(string[] args)
{
ArrayList list = new ArrayList();
list.Add(new Person(6, "排長"));
list.Add(new Person(3, "團長"));
list.Add(new Person(4, "司令"));
list.Add(new Person(5, "旅長"));
list.Add(new Person(7, "連長"));
list.Add(new Person(1, "軍長"));
list.Add(new Person(2, "營長"));
list.Add(new Person(8, "師長"));
list.Sort();
Console.WriteLine("Sort By ID Asc:");
foreach (Person person in list)
{
Console.WriteLine("ID: " + person.ID.ToString() + ", Rank: " + person.Rank);
}
Console.WriteLine("----------------------------");
Console.WriteLine("Sort By ID Desc:");
Person.intSortOrder = enuSortOrder.IDDesc;
list.Sort();
foreach (Person person in list)
{
Console.WriteLine("ID: " + person.ID.ToString() + ", Rank: " + person.Rank);
}
Console.WriteLine("----------------------------");
Console.WriteLine("Sort By Rank Asc:");
Person.intSortOrder = enuSortOrder.RankAsc;
list.Sort();
foreach (Person person in list)
{
Console.WriteLine("ID: " + person.ID.ToString() + ", Rank: " + person.Rank);
}
Console.WriteLine("----------------------------");
Console.WriteLine("Sort By Rank Desc:");
Person.intSortOrder = enuSortOrder.RankDesc;
list.Sort();
foreach (Person person in list)
{
Console.WriteLine("ID: " + person.ID.ToString() + ", Rank: " + person.Rank);
}
}
}

效果圖:

13)屬性、方法作用范圍

復制代碼 代碼如下:

using System;
class Base
{
/*
* public 的可訪問范圍是所有類
* private 的可訪問范圍是當前類
* protected 的可訪問范圍是當前類及其子類
*/
public string name = "Tom";
private double salary = 1500;
protected int age = 20;
public virtual void ShowInfo()
{
Console.WriteLine(this.name); //可以,因為name是 public 型的
Console.WriteLine(this.salary); //可以,salary是private型,在Base類中可以訪問
Console.WriteLine(this.age); //可以,因為age是protected型,在子類中可以訪問
}
}
class Derived : Base
{
public override void ShowInfo()
{
Console.WriteLine(this.name); //可以,因為name是 public 型的
//Console.WriteLine(this.salary); //不可以,salary是private型,超出Base就無法訪問
Console.WriteLine(this.age); //可以,因為age是protected型,在子類中可以訪問
}
}
class Client
{
public static void Main()
{
Base b = new Base();
Console.WriteLine(b.name); //可以,因為name是 public 型的
//Console.WriteLine(this.salary); //不可以,salary是private型,超出Base就無法訪問
//Console.WriteLine(this.age); //不可以,因為age是protected型,Client不是Base的子類
Console.WriteLine("==========================");
b.ShowInfo();
Console.WriteLine("==========================");
Derived d = new Derived();
d.ShowInfo();
}
}

效果圖:

15)字段與屬性

復制代碼 代碼如下:

using System;
class SumToHundred
{
public static void Main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum += i;
Console.WriteLine(sum);
}
}

pic
復制代碼 代碼如下:

using System;
class Account
{
private double balance = 0; //字段
public double Balance //屬性
{
get { return balance; }
set { balance = value;}
}
/*=============================================================
* 我們可以通過修改get、set方法達到控制存取的目的。
* 例如:
*
* 1)只讀屬性
* public double Balance //屬性
* {
* get { return balance; }
* set { }
* }
*
* 2)讀寫控制
* public double Balance
* {
* get
* {
* if(Console.ReadLine()=="1234")
* return balance;
* else
* return -9999999;
* }
* set { }
* }
* =============================================================
*/
public void Deposit(double n)
{ this.balance += n; }
public void WithDraw(double n)
{ this.balance -= n; }
}
class Client
{
public static void Main()
{
Account a = new Account();
a.Balance = 1000; // 可以讀寫屬性,因為屬性Balance是public型的
//a.balance = 1000; //不可以讀寫字段,因為字段balance是private型的
a.WithDraw(500);
a.Deposit(2000);
Console.WriteLine(a.Balance);
}
}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 国产高潮国产高潮久久久91 | 欧美精品久久天天躁 | 黄色毛片免费看 | 欧美成人黄色小视频 | 全黄毛片 | 亚洲乱妇19p | 羞羞视频免费观看网站 | 国产免费片 | 夜添久久精品亚洲国产精品 | 久久爽精品区穿丝袜 | 九九热国产视频 | 欧美色爱综合 | 日本在线不卡一区二区三区 | 国产一级淫片a级aaa | www.91sao| 欧美日韩一| 成人免费看视频 | 久久久国产精品网站 | 国产一区二区三区精品在线观看 | 一级成人黄色片 | 国产成人精品日本亚洲语音 | av懂色 | 国产做爰 | 蜜桃网在线观看 | 成年片在线观看 | 精精国产xxxx视频在线野外 | 国产亚洲精品久久久久久久久久 | 爽爽淫人综合网网站 | 日韩视频精品一区 | 91精品中文字幕 | 免费a级毛片永久免费 | 黄色毛片一级视频 | 毛片免费观看完整版 | 性日本xxx| 久久超 | 国产精品免费一区二区 | 国产免费久久久久 | 成年人视频免费看 | 精品国产视频一区二区三区 | 99爱视频在线观看 | 蜜桃视频在线播放 |