博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java第六次作业
阅读量:5137 次
发布时间:2019-06-13

本文共 867 字,大约阅读时间需要 2 分钟。

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()); }}

转载于:https://www.cnblogs.com/azkahb/p/6651848.html

你可能感兴趣的文章
properties配置文件读写,追加
查看>>
Linux环境下MySql安装和常见问题的解决
查看>>
lrzsz——一款好用的文件互传工具
查看>>
这20件事千万不要对自己做!
查看>>
Linux环境下Redis安装和常见问题的解决
查看>>
HashPump用法
查看>>
cuda基础
查看>>
Vue安装准备工作
查看>>
.NET 母版页 讲解
查看>>
oracle 创建暂时表
查看>>
201421410014蒋佳奇
查看>>
Xcode5和ObjC新特性
查看>>
jvm slot复用
查看>>
LibSVM for Python 使用
查看>>
Centos 7.0 安装Mono 3.4 和 Jexus 5.6
查看>>
Windows 7 上安装Visual Studio 2015 失败解决方案
查看>>
iOS按钮长按
查看>>
Shell流程控制
查看>>
CSS属性值currentColor
查看>>
[Leetcode|SQL] Combine Two Tables
查看>>