首页 > 代码库 > java第六次作业
java第六次作业
class Check{ public boolean validate(String name,String password){ if(name.equals("huangjiashuai")&&password.equals("hjs")){ return true; }else{ return false; } } } class Operate{ private String info[]; public Operate(String info[]){ this.info=info; } public String login(){ Check check= new Check(); this.isExit(); String name = this.info[0]; String password = this.info[1]; String str = null; if(check.validate(name, password)){ str = "欢迎"+name+"光临!"; }else{ str = "错误的用户名和密码!"; } return str; } public void isExit(){ if(this.info.length!=2){ System.out.println("输入的参数不正确,系统退出!"); System.out.println("格式:java LoginDemo02 用户名 密码"); System.exit(1); } } } public class LoginDemo02{ public static void main(String args[]){ Operate oper = new Operate(args); System.out.println(oper.login()); } }
java第六次作业
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。