用一个实例,讲一下如何用static关键字

static 关键字可以用来修饰成员变量和成员方法。
所有的对象都公用这个静态属性

以下的代码 是模拟一个ATM机,改密码,存款,取款的功能。
因为没有数据库的知识,所以程序做的很简陋。

import java.util.Scanner;
public class Person {
static String name=“admin”;
static int password=123456;
static int money=20000;
static void yanzhen(String s,int j){
if(s.equals(name)&&j==123456)
System.out.println(“密码正确”);
else
{
Scanner sc=new Scanner(System.in);
System.out.println(“密码错误”);
System.out.println(“输入用户名字:”);
String s1=sc.next();
System.out.println(“输入密码:”);
int j1=sc.nextInt();
Person.yanzhen(s1,j1);
}
}
static void gaimi(){
System.out.println(“请输入新密码:”);
Scanner sc=new Scanner(System.in);
int i=sc.nextInt();
password=i;
System.out.println(“修改新密码为:”+password);
}
static void qukuan(){
System.out.println(“输入取款金额:”);
Scanner sc=new Scanner(System.in);
int i=sc.nextInt();
money-=i;
System.out.println(“您的余额为:”+money);
}
static void cunkuan(){
System.out.println(“输入存款金额:”);
Scanner sc=new Scanner(System.in);
int i=sc.nextInt();
money+=i;
System.out.println(“您的余额为:”+money);
}
}

以下部分是测试用例。main函数在这里。

import java.util.Scanner;
public class Test {
public static void main(String[] args) {
    Scanner sc=new Scanner(System.in);
    System.out.println("输入用户名字:");
    String s=sc.next();
    System.out.println("输入密码:");
    int j=sc.nextInt();
    Person.yanzhen(s,j);
    System.out.println("请选择您的操作类型:");
    System.out.println("0:退出    1:修改密码    2:取款       3:存款");
    int i=sc.nextInt();
    
       do{
           if(i==1)
         {   Person.gaimi();
             System.out.println("请选择您的操作类型:");
             System.out.println("0:退出    1:修改密码    2:取款       3:存款");
              i=sc.nextInt();
         }
          if(i==2)
          {
              Person.qukuan();
              System.out.println("请选择您的操作类型:");
              System.out.println("0:退出    1:修改密码    2:取款       3:存款");
              i=sc.nextInt();
          }

        if(i==3)
        {
            Person.cunkuan();
            System.out.println("请选择您的操作类型:");
            System.out.println("0:退出    1:修改密码    2:取款       3:存款");
            i=sc.nextInt();
        }
        else
           break;
     }while(i!=0);
    System.out.println("退出系统");
    }
 }
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值