c#-day03学习笔记

 

循环语句

一共有三种

1: For循环

2: while 循环

3: do while 循环

//1             //2             //4

For循环  语法       for(   int i=0;    i<10;         i++)

{

//3

}

 

While 循环      语法        while(布尔表达式)

{

//语句

}

 

Do while 循环 语法      do

{

 

}while(布尔表达式);

 

数组

定义: 一些列相同类型变量的集合

 使用数组,可以对相同类型的变来那个进行很好的管理,方便操作

数组的语法 :

类型[] 数组名 = new 类型[数组的长度];

数组都是继承子array类

类型[] 数组名 =  Array.clone(数组)

数组名.copyto(要拷贝到的数组,索引);

 

数组的遍历:

For(int i=0; i<数组.length;i++)

{

数组的类型 变量 = 数组[i];

}

 

Foreach(数组的类型 m  in  数组)

{

//m就是数组里的每一个元素

}

 

String类和StringBuilder类

String 类数管理字符串的类,string 类里有很多的方法是多字符串做操作的!

 

String.join()

String.format()

对象.indexof()

对象.lastIndexof()

对象.contains()

对象.toupper()

对象.tolower()

对象.split()

 

一,裁剪 “123,543,555,222”

posted on 2014-05-28 20:53  李鹏周  阅读(104)  评论(0编辑  收藏  举报