1.C#物件導向基礎簡介

來源:互聯網
上載者:User

標籤:style   blog   http   color   io   2014   cti   ar   

學習核心內容:

             物件導向的三個特性:封裝、繼承、多態

存取層級:用處在於控製成員在那些地方可以訪問,這樣達到物件導向封裝的目的。

常用層級:
public (任何地方都可以訪問)

private(預設層級。只能由本類中的成員訪問。)


1.開啟軟體:

建立項目——windows——控制台應用程式——類1

代碼如下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 類1{    /*主類*/    class Program    {        static void Main(string[] args)        {            Person p1 = new Person();            p1.Name = "星雲";            p1.Height = 167;            p1.Age=22;            p1.SayHello();            Console.ReadKey();        }    }    //建立person類    class Person    {        public int Height;        public int Age;        public string Name;        public void SayHello()        {     Console.WriteLine("大家好!我叫{0},我的身高是{1},我的年齡是{2}。\n\n 今天剛開始學習C#,還請各位前輩多多指教!",this.Name,this.Height,this.Age);        }    }}

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.