終於到中級了 很開心哈
第十六講 類
C#是一種物件導向語言 一切事物都是對象:廢話
類 對象 對象是類具體化,執行個體化。
Person thePerson= new Person(); //為他開闢空間
定義一個類:class
訪問限制關鍵字(public)
public class Person
{
//成員屬性
public String name;
public int age;
public int shengao;
//成員方法
public string say{...}
代碼:
/*
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace First {
//類Form1代表視窗
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
// 主視窗的Load時間處理函數 不能被我們調用
只能由作業系統來調用
private void Form1_Load(object sender,
EventArgs e) {
Person zhangSan = new Person();
zhangSan.name = "張三";
this.textBox1.Text = zhangSan.say();
}
public class Person
{
//成員屬性
public String name;
public int age;
public int shengao;
//成員方法
public string say()
{
return "哥們兒,看在黨國的面子上拉兄弟一把吧
。";
}
}
}
}
*/
第十七講 類的成員屬性
屬性:為了更好的訪問“類”中的成員變數。C#提供了屬性
所謂“更好”值得是更加安全、清楚等。保護好私人變數的隱蔽性等
。
public是公開的 在任何地方都可以訪問
給私人變數增加屬性
public class Person
{
private string name="";
public string Name{
get{return name;} //得到變數
set{name=value;} //設定變數
}
}
代碼是一一對應的(預設是第三個)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace First {
//類Form1代表視窗
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
// 主視窗的Load時間處理函數 不能被我們調用
只能由作業系統來調用
private void Form1_Load(object sender,
EventArgs e) {
/*
Person zhangSan = new Person();
zhangSan.name = "大郎";
this.textBox1.Text = zhangSan.name;
//*/
/*
Person zhangSan = new Person();
zhangSan.Name = "張三";
this.textBox1.Text = zhangSan.Name;
//*/
Person zhangSan = new Person();
zhangSan.Name = "三";
//zhangSan.Name = "張三";
this.textBox1.Text = zhangSan.Name;
}
/*
public class Person
{
public String name = ""; //共有變數
,可以在任何地方訪問
}
}
//*/
/*
public class Person {
private String name = ""; //私人變數
,不能為外界訪問
public String Name {
get { return name; }
set { name = value; }
}
}
//*/
public class Person {
private String name = ""; //私人變數
,不能為外界訪問
public String Name {
get { return name; }
set {
if (value.Length >=
2)
name =
value;
else
name = "無名
氏";
}
}
}
}
}
第十八講 唯讀屬性和索引
唯讀屬性
public class Person
{
private string name="";//私人變數
public string Name
{
get{return name;}// 如果只有get屬性 那麼為唯讀屬性, 唯寫屬
性為 set
}
}
索引: 通過提供所引器,可以象處理數組一樣處理對象
public class Book
{
// 成員變數
public string temp="";
//成員索引
public String this [int index] //this表示的是類名 string 索
引必須有傳回型別 即字串
{ get{return temp;}
set{temp=value;}
}
代碼: 不是完全懂
namespace First {
//類Form1代表視窗
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
// 主視窗的Load時間處理函數 不能被我們調用
只能由作業系統來調用
private void Form1_Load(object sender,
EventArgs e) {
Book theBook = new Book();
theBook[0] = "從前有一座山,山裡有。
。。";
this.textBox1.Text = theBook[0]; //
執行get部分
}
public class Book {
public string temp = "";
public String this[int index] {
get { return temp; }
set { temp = value; }
}
}
}
}
第十九講 再說索引
索引:處理數組一樣處理對象
telephoneList theTelephoneList=new telephoneList()
string name=
public class Student
{
public String name;
public int ID;
}
public class telephoneList
{
//成員變數
private Student[] Students;
public String this[int theID]
}
完全沒聽懂 代碼也不完全 改天專門研究索引