C#学习笔记-封装

前言

  说起来惭愧,学了大半年的C#,其实最开始就接触到了封装的部分,但是一直模模糊糊的弄不清楚,也觉得没什么影响就没怎么在意,现在才开始认真的看这部分内容,看懂了过后好多东西清晰了不少,才发现封装这个基础那么那么重要。

  现在反过来一想,封装和类这些其实就是当初最开始学习面向对象编程的时候老师教的定义,最基础的最基础,我居然到现在才弄懂,我也是对不起我以前交的学费啊!(悲痛!)

  但是以前学习的时候,老师也是拿着书本,我也是拿着书本,没有练在手上,所以很多东西都太空洞了!还是那句话:“纸上得来终觉浅,绝知此事要躬行”!

定义

  封装就是将数据或函数等集合在一个个的单元中。

  在我的理解里封装就是“打包”,至于你是打包带走,还是打包扔了,还是打包给谁,都是你的*。

  就像我要去上学,我就要把所有要用的东西全部装到书包里带走到学校一样,我把所有的教科书、练习册、文具盒、笔记本、便利贴等等全部都放在一个包里,我要去上学,我就执行背上书包的动作就好了,因为我的所有的工具都已经“打包”好了,要是让别人帮我把书包带到学校去也是一样的道理,他们并不需要知道我书包里装了什么,他们只要执行帮我带书包这个动作就好了。我的书包里面的东西他们可以用久了废了然后扔了,也可以一直都在,还可以装入新的东西。当然这些操作是我书包里面的内部操作,这个只需要我知道就好了,外面的人他们并不关心里面到底发生了什么。

  这就是封装的作用:保护数据不被外来因素无意间破坏,同时却也方便外面的操作直接调用。

使用

  实际代码操作:

    class Program
{
static void Main(string[] args)
{
Console.WriteLine("Buy a new car.................");
Car car = new Car();
Console.WriteLine("Here is the information of new car:");
Console.WriteLine("car's color is:{0}", car.Color);
Console.WriteLine("car has {0} types", car.TypeNum);
Console.WriteLine("car's oil is:{0}\t\n", car.Oil);
car.run();
Console.WriteLine("I wanna change the color of car");
car.changeColor(car.Color);
car.fillOil(car.Oil);
Console.Read();
}
} /// <summary>
/// package
/// all things about car can be packaged in the one class
/// </summary>
public class Car
{
int typeNum = ;
string color = "red";
int oil = ; /// <summary>
/// the number of type
/// not allowed to modify,onlyread
/// </summary>
public int TypeNum
{
get
{
return typeNum;
}
} /// <summary>
/// the color of car
/// but we can change the color
/// </summary>
public string Color
{
get
{
return color;
} set
{
color = value;
}
} /// <summary>
/// the oil
/// it always change
/// </summary>
public int Oil
{
get
{
return oil;
} set
{
oil = value;
}
} public void run()
{
Console.WriteLine("Running for a while................\t\n");
} public void changeColor(string oldColor)
{
string newColor = "";
string yORn = "";
Console.WriteLine("Are you sure change the color of your car?Y/N");
yORn = Console.ReadLine(); if (yORn == "y" || yORn == "Y")
{
Console.WriteLine("Please input which color you wanna");
newColor = Console.ReadLine(); if (newColor != oldColor)
{
Console.WriteLine("Your car's new color is {0}", newColor);
}
else
{
Console.WriteLine("Your new color is as same as the old one,so you don't need to change!");
}
Console.Read();
}
else
{
Console.WriteLine("Fine! Your car's color still is{0}", oldColor);
Console.Read();
}
} public void fillOil(int previousOil)
{
int presentOil = ;
Console.WriteLine("Your car's oil is{0}%", previousOil);
Console.WriteLine("Filling the oil.................");
Console.WriteLine("Now,yourcar's oil is{0}%\t\n", presentOil);
Console.WriteLine("Fine!Have a nice day");
Console.Read(); }
}

  效果预览:

C#学习笔记-封装

上一篇:ES6笔记(3)-- 解构赋值


下一篇:自己动手写UI库——引入ExtJs(布局)