分享
 
 
 

C#学习笔记之一(basic, class, function,array, collection interface)

王朝c#·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

最近学习了C#程序设计的课程, 现在将笔记总结如下, 没有系统整理,都是课上记得notes, 后面几部分以程序居多,因为这些笔记没有做过整理,所以很多code没有详细的注释,如果有时间的话,我会对笔记做系统的整理,还有这里没有提及基本的语法介绍,望大家谅解:

Basic:

//利用out, 不用给i,j assign初始值

int i,j;

f(out i, out j) {}

//using, 括号外自动destroy对象

using (Font theFont == new Font("Ariel", 10.0f)){}

//constants

const int i = 32;

//Enumeration

enum E {a=5,b=8}

int i = (int) E.a;

//turn buff data to string

Encoding.ASCII.GetString(buff, 0, bytesRead)

// read data

string s = Console.ReadLine()

int j= Convert.ToInt32(s);

//get textbox value and convert to double

double left = double.Parse(textBox1.Text);

Application.DoEvent(); //this will let app deal with event

array:

A[] a = new A[5]; // a[0]to a[5] is null

int[] arr = new int[2] {1,2}

int[] arr = {2,3,4,5}

foreach(A a in arr_A) {}

for(int i=0; i<arr.Length; i++) {}

//Rectangular Arrays

int[,] rectArray = new int[4,5]

int[,] arr = {{1,2,3,4},{1,2,3,4}{1,2,3,4}}; //init

//Jagged array, 数组中包含数组,各维不等长

// ja[0].Length is length of ja[0]

int [][] ja = new int[4][];

//using params transfer a array to a function

//using f(1,2,3,4) to call the function

f(params int[] values){

foreach (int[] a in values) {}

}

Collection interface:

indexers:

//define a indexers

public Myclass this[int offset] {get{};set{}}

//call it

Employee joe = bostonOffice["Joe"];

IEnumerable:

//return a IEnumerator object

GetEnumerator()

IEnumerator:

Reset(){}

Current(){}

MoveNext(){}

IComparable:

//Class inherit IComparable interface

//Implement CompareTo() method

CompareTo()

ArrayLists:

Count Get number of elements

Add() Add an object

Clear() Remove all objects

Reverse() Reverse order of elements

Sort() Sort the elements

function:

//default by value

f(int x){}

//by reference

f(ref int x){}

class:

//存取:

public, private, protected, internal, protected internal

this, static //static member must be init in class

//继承

class A: B {}

//多态

virtual,override

//init对象

Employee emp1 = new Employee();

//先隐式转换3为Roman

Roman r4 = r1 + 3;

//先显式转换7.5为Roman

Roman r5 = r1 +(Roman)7.5;

// 运算符重载,先返回int, 然后用隐式转换

public static Roman operator+ (Roman l, Roman r)

{

return (l.val+r.val);

}

//显式转换

public static explicit operator Roman(float val)

{

return new Roman(val);

}

//隐式转换

public static implicit operator Roman(int val)

{

return new Roman(val);

}

//properties, 注意大小写

public int Age {

get {return age;}

set {age = value;}

}

//Interface

//interface methods must be implement in class

public interface IA {}

//is 测试类是否从接口继承

if (a is IA) {IA c = (IA) a; }

//as 测试类是否从接口继承

IA c = a as IA;

if (c != null) {}

//interface properties

pubiic interface IAA: IA

{

float F{get;set;}

}

//mutiface interface inheritance

public class C: IA, IB {}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有