c\#방법의 실례 방법

2076 단어 c#
    class Program
    {
        int example=0;
        static int staticvar = 0;
        static void staticMeThod() { 
        //    ;
            //                           
            //                                             
            //                                         


        }
        void exampleMeThod() {
            //                                        
            //                               
            //            this                         


        }
        static void Main(string[] args)
        {
            //staticMeThod();
            //Program.staticMeThod();
            //              exampleMeThod
            //exampleMeThod();       
            //example = 1;       
            Program p = new Program();
           // p.staticMeThod();                   
            //p.exampleMeThod();       

        }
    }
}

인 스 턴 스 방법 은 많은 일반적인 표지 가 static 가 없 기 때문에 인 스 턴 스 방법의 호출 은 클래스 대상 을 통 해 만 호출 할 수 있 고 정적 방법 은 현재 클래스 라면 직접 호출 할 수 있 으 며 클래스 이름 을 통 해 호출 할 수 있 습 니 다.방법 이 간단 하기 때문에 지나치게 논술 하지 않 는 다.

좋은 웹페이지 즐겨찾기