1. 程式人生 > >static靜態變量-投票案例

static靜態變量-投票案例

ring 停止 變量 i++ span 允許 string else pri

 1 public class Voter {
 2     String name;  //名字
 3     private static int count;  //投票數
 4     
 5     public Voter() {}
 6     
 7     public Voter(String name) {
 8         this.name=name;
 9     }
10     
11     public void Vote() {
12         if(count==100) {
13             System.out.println("投票活動已經結束!");
14 return; 15 }else { 16 count++; 17 System.out.println(this.name+"歡迎您投票,當前票數是:"+count); 18 } 19 } 20 }
 1 //選民投票,每人只允許投票一次,當票數達到100時停止投票
 2 public class TestVoter {
 3 
 4     public static void main(String[] args) {
 5         for(int i=0;i<105;i++) {
6 Voter v=new Voter("張三"+(i+1)); 7 v.Vote(); 8 } 9 } 10 11 }

static靜態變量-投票案例