JAVA 类与对象题目2
Posted 暗蓝幻灭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA 类与对象题目2相关的知识,希望对你有一定的参考价值。
public class Account {
String ZHu;
double YE;
double ZHa;
Account (String ZHu,double YE)
{
this.ZHu = ZHu;
this.YE = YE;
}
void CK(double CK)
{
this.YE += CK;
}
void QK(double QK)
{
this.YE -= QK;
}
double getYE()
{
return this.YE;
}
public static void main(String[] args)
{
Account a = new Account("xt", 123456);
System.out.println("余额" + a.getYE());
}
}
以上是关于JAVA 类与对象题目2的主要内容,如果未能解决你的问题,请参考以下文章