類與對象.

來源:互聯網
上載者:User

標籤:bsp   對象   equals   com   方法   demo   tin   NPU   []   

package com.demo;

      public class Student {  

          String name;  

          char sex;   

          int age;  

}

 

package com.demo;

      public class StudentTest {

          public static void main(String[] args) {  

             Student wangstu=new Student();   

             wangstu.name="王洪濤";   
             wangstu.age=18;  

             wangstu.sex=‘女‘;  

             wangstu.showStudent();   

    }

}

 

 

package com.demo;

     import java.util.Scanner;

        public class PersonTest {  

           public static void main(String[] args) {   

              Person person=new Person();        

              person.show();  

     }

}

protected:受保護的
  private:私人的
  public:公用的
  存取層級

 

package com.demo;

     import java.util.Scanner;

       public class Person {

          public String name;

          public int age;    

           /**  

           * 用來迴圈接收使用者輸入,然後判斷年齡  

           */    

           /**  

          * 如果類和屬性還有方法不添加存取修飾詞,那麼預設是?  

          * 預設是public  

          */  

          public void show(){  

                     Scanner input=new Scanner(System.in);     

                     System.out.println("請輸入姓名:");  

                     name=input.next();        

                     //1.迴圈   

                    while(!name.equals("n")){  

                               System.out.println("請輸入年齡:");  

                                age=input.nextInt();  

                     //2.判斷   

                     if(age>=18&&age<=60){    

                               System.out.println("門票20元");  

                       }else{     

                               System.out.println("門票免費");   

                       }   

                        System.out.println("請輸入姓名:");   

                       name=input.next();    

                       }  

                        System.out.println("程式結束!");

      }

  }

 

類與對象.

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.