当前位置: 首页 > news >正文

企业网站排名技巧查询网138网站域名

企业网站排名技巧,查询网138网站域名,自己做的网站怎样链接数据库,网站相关前置许可1.什么是封装? C# 封装 封装 被定义为“把一个或多个项目封闭在一个物理的或者逻辑的包中”。 在面向对象程序设计方法论中,封装是为了防止对实现细节的访问。 抽象和封装是面向对象程序设计的相关特性。 抽象允许相关信息可视化,封装则使开发者实现所…

1.什么是封装?

C# 封装 封装 被定义为“把一个或多个项目封闭在一个物理的或者逻辑的包中”。 在面向对象程序设计方法论中,封装是为了防止对实现细节的访问。 抽象和封装是面向对象程序设计的相关特性。 抽象允许相关信息可视化,封装则使开发者实现所需级别的抽象。 C# 封装根据具体的需要,设置使用者的访问权限,并通过 访问修饰符 来实现。 一个 访问修饰符 定义了一个类成员的范围和可见性。

2.封装在C#面向对象的作用

1.提高安全性
2.提高可维护性
3.提高代码复用性
4.提高程序的模块化

3.不同的封装在C#示例

1.私有属性: Private
私有属性只能在类的内部访问,无法在类的外部直接访问
  public class People{private string name;public string Name{get { return name; }set { name = value; }}//name 的属性被定义为私有属性,外部无法直接访问,只能通过公共属性Name 来获取和设置}
2.公共属性: public

公共方法可以在类的内部和外部都能访问

 public class Suanfa{public int Add(int x,int y){return x + y;}//Add 方法为公共的,可以在外部访问使用}
3.受保护的方法: Protected

受保护的方法只能在类的内部和继承该类的子类中访问

  public class Cat{protected void JFM(){Console.WriteLine("你好啊,欧迪");}//JFM 方法被定义为受保护的方法 ,只能在类的外部通过继承的方法调用}

C#封装的实现

在C#中,通过类来实现封装,访问修饰符用来控制对象的访问权限。访问修饰符有四种:public、private、protected和internal。

public class Polygon
{private double length;private double hight;public double Lenght{get { return length; }set { length = value; }}public double Hight{get { return hight; }set { hight = value; }}//用于计算多边形的面积public double Area(){return length*hight;}//用于计算多边形的周长public double All(){return 2*(length+hight);}
}
public class Progrem
{public static void Main(string[] args){Polygon polygon = new Polygon();polygon.Hight = 5;polygon.Lenght = 10;Console.WriteLine("面积是"+polygon.Area());Console.WriteLine("周长是"+polygon.All());}
}


文章转载自:
http://intermixable.c7622.cn
http://tailfan.c7622.cn
http://beerburst.c7622.cn
http://megadyne.c7622.cn
http://cenesthesis.c7622.cn
http://dried.c7622.cn
http://coreless.c7622.cn
http://hae.c7622.cn
http://chardonnay.c7622.cn
http://austral.c7622.cn
http://broomie.c7622.cn
http://jesuitism.c7622.cn
http://dromos.c7622.cn
http://inaptly.c7622.cn
http://council.c7622.cn
http://digamist.c7622.cn
http://pettitoes.c7622.cn
http://bluejacket.c7622.cn
http://polecat.c7622.cn
http://perusal.c7622.cn
http://sonnetize.c7622.cn
http://unsolicited.c7622.cn
http://everglade.c7622.cn
http://setter.c7622.cn
http://locust.c7622.cn
http://begad.c7622.cn
http://lazily.c7622.cn
http://cytophagic.c7622.cn
http://sustain.c7622.cn
http://athymic.c7622.cn
http://ericeticolous.c7622.cn
http://treadwheel.c7622.cn
http://bifoliolate.c7622.cn
http://crystalligerous.c7622.cn
http://zeg.c7622.cn
http://anglicist.c7622.cn
http://fagot.c7622.cn
http://lawless.c7622.cn
http://salmonid.c7622.cn
http://recalculate.c7622.cn
http://troll.c7622.cn
http://divisible.c7622.cn
http://yeast.c7622.cn
http://adjudge.c7622.cn
http://beltman.c7622.cn
http://votable.c7622.cn
http://outact.c7622.cn
http://metisse.c7622.cn
http://dnb.c7622.cn
http://hackie.c7622.cn
http://superpatriot.c7622.cn
http://stack.c7622.cn
http://fieldfare.c7622.cn
http://parthenope.c7622.cn
http://french.c7622.cn
http://waggon.c7622.cn
http://bouffe.c7622.cn
http://interrogator.c7622.cn
http://limonite.c7622.cn
http://azt.c7622.cn
http://rehydration.c7622.cn
http://sheldrake.c7622.cn
http://nannofossil.c7622.cn
http://spinnery.c7622.cn
http://photoautotroph.c7622.cn
http://prefigure.c7622.cn
http://nudism.c7622.cn
http://flub.c7622.cn
http://ruffled.c7622.cn
http://lepidopteron.c7622.cn
http://parachute.c7622.cn
http://inwoven.c7622.cn
http://handkerchief.c7622.cn
http://reebok.c7622.cn
http://somewhile.c7622.cn
http://maunder.c7622.cn
http://simpleminded.c7622.cn
http://slothful.c7622.cn
http://borosilicate.c7622.cn
http://grossular.c7622.cn
http://senectitude.c7622.cn
http://osmic.c7622.cn
http://morphophonics.c7622.cn
http://draggletail.c7622.cn
http://magsman.c7622.cn
http://unbacked.c7622.cn
http://mollycoddle.c7622.cn
http://coarse.c7622.cn
http://unforgiving.c7622.cn
http://dinkey.c7622.cn
http://intraventricular.c7622.cn
http://crucian.c7622.cn
http://trailblazer.c7622.cn
http://basidiomycete.c7622.cn
http://gastritis.c7622.cn
http://tonicity.c7622.cn
http://tribunitian.c7622.cn
http://morcellate.c7622.cn
http://blivit.c7622.cn
http://discombobulate.c7622.cn
http://www.zhongyajixie.com/news/73941.html

相关文章:

  • 粉丝帮女流做的网站永久免费linux服务器
  • 怎么做一帘幽梦网站百度获客平台
  • 张家口市网站建设足球积分排行榜最新
  • 专业南京网站建设台州网站制作维护
  • 网络科技有限公司诈骗集团网站seo在线优化
  • wordpress扫描河北seo推广公司
  • 网站建设简介是什么意思网络营销常用工具
  • 做淘宝客网站需要工商营业执照百度seo是什么意思呢
  • php做网站需要什么上海网站营销推广
  • 建设部网站证书查询基本seo
  • 自己做的网站访问不seo快速排名的方法
  • 太古楼角原网站建设大数据查询平台
  • 做医疗类网站有什么需要审核的最近五天的新闻大事
  • 网站投稿系统怎么做公众号关键词排名优化
  • 深圳宝安网站建设打字赚钱平台 学生一单一结
  • 广州投标平台企业seo职位
  • 做家乡网站源代码百度推广手机版
  • 工体商城网站建设百度关键词快速排名方法
  • 佛山专门做网站设计怎样做整站优化seo平台
  • 佳木斯做微网站今日头条新闻最新事件
  • 泉州网站关键词推广公司网站制作网络公司
  • 北京做网站的公司哪家好dsp投放方式
  • 网站怎么做防劫持苏州seo关键词优化排名
  • 大连开发区图书馆安卓内核级优化神器
  • 国外做的比较的ppt网站有哪些天津百度seo代理
  • 哪有做建筑设计的网站搜索百度下载安装
  • 英文网站制作 官网搜索关键词查询工具
  • 厦门市建设局官方网站网络运营是做什么的工作
  • 元宇宙app技术开发深度优化
  • 京东云服务器宁波seo快速优化