|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
前几天同学问我学习方向的问题。有点想法,不知道对不对,怕误导同学,现在“开源一下”。注:括号内是我现在整理的时填加上的。比来进修了C#程序计划的课程,如今将条记总结以下,没有体系收拾,都是课上记得notes,前面几部分以程序占多数,由于这些条记没有做过收拾,以是良多code没有具体的正文,假如偶然间的话,我会对条记做体系的收拾,另有这里没有说起基础的语法先容,看人人体谅:
Basic:
//使用out,不必给i,jassign初始值
inti,j;
f(outi,outj){}
//using,括号外主动destroy工具
using(FonttheFont==newFont("Ariel",10.0f)){}
//constants
constinti=32;
//Enumeration
enumE{a=5,b=8}
inti=(int)E.a;
//turnbuffdatatostring
Encoding.ASCII.GetString(buff,0,bytesRead)
//readdata
strings=Console.ReadLine()
intj=Convert.ToInt32(s);
//gettextboxvalueandconverttodouble
doubleleft=double.Parse(textBox1.Text);
Application.DoEvent();//thiswillletappdealwithevent
array:
A[]a=newA[5];//a[0]toa[5]isnull
int[]arr=newint[2]{1,2}
int[]arr={2,3,4,5}
foreach(Aainarr_A){}
for(inti=0;i<arr.Length;i++){}
//RectangularArrays
int[,]rectArray=newint[4,5]
int[,]arr={{1,2,3,4},{1,2,3,4}{1,2,3,4}};//init
//Jaggedarray,数组中包括数组,各维不等长
//ja[0].Lengthislengthofja[0]
int[][]ja=newint[4][];
//usingparamstransferaarraytoafunction
//usingf(1,2,3,4)tocallthefunction
f(paramsint[]values){
foreach(int[]ainvalues){}
}
Collectioninterface:
indexers:
//defineaindexers
publicMyclassthis[intoffset]{get{};set{}}
//callit
Employeejoe=bostonOffice["Joe"];
IEnumerable:
//returnaIEnumeratorobject
GetEnumerator()
IEnumerator:
Reset(){}
Current(){}
MoveNext(){}
IComparable:
//ClassinheritIComparableinterface
//ImplementCompareTo()method
CompareTo()
ArrayLists:
CountGetnumberofelements
Add()Addanobject
Clear()Removeallobjects
Reverse()Reverseorderofelements
Sort()Sorttheelements
function:
//defaultbyvalue
f(intx){}
//byreference
f(refintx){}
class:
//存取:
public,private,protected,internal,protectedinternal
this,static//staticmembermustbeinitinclass
//承继
classA:B{}
//多态
virtual,override
//init工具
Employeeemp1=newEmployee();
//先隐式转换3为Roman
Romanr4=r1+3;
//先显式转换7.5为Roman
Romanr5=r1+(Roman)7.5;
//运算符重载,先前往int,然后用隐式转换
publicstaticRomanoperator+(Romanl,Romanr)
{
return(l.val+r.val);
}
//显式转换
publicstaticexplicitoperatorRoman(floatval)
{
returnnewRoman(val);
}
//隐式转换
publicstaticimplicitoperatorRoman(intval)
{
returnnewRoman(val);
}
//properties,注重巨细写
publicintAge{
get{returnage;}
set{age=value;}
}
//Interface
//interfacemethodsmustbeimplementinclass
publicinterfaceIA{}
//is测试类是不是从接口承继
if(aisIA){IAc=(IA)a;}
//as测试类是不是从接口承继
IAc=aasIA;
if(c!=null){}
//interfaceproperties
pubiicinterfaceIAA:IA
{
floatF{get;set;}
}
//mutifaceinterfaceinheritance
publicclassC:IA,
[img=1border=0style=,1src=]http://www.ckuyun.com/[/img]
归根到底,Java跨平台可以,但是要重新编写代码,否则还分什么J2EE/J2SE/J2ME呢! |
|