简单啊 我写的是C#,改成java试下!
从策划到设计制作,每一步都追求做到细腻,制作可持续发展的企业网站。为客户提供成都网站设计、网站制作、网站策划、网页设计、域名申请、网站空间、网络营销、VI设计、 网站改版、漏洞修补等服务。为客户提供更好的一站式互联网解决方案,以客户的口碑塑造优易品牌,携手广大客户,共同发展进步。
public class checkAccount {
protected int _no; //卡号
protected string _name; //姓名
protected decimal _balance; //余额 就是你说的money
public checkAccount(int no, string name)
{
_no = no;
_name = name;
}
public int getno()
{
return _no;
}
public string getname()
{
return _name;
}
public void setname(string name)
{
this._name = name;
}
public decimal getdeposit()
{
return _balance;
}
// 存钱方法
public bool deposite(decimal money)
{
if (money 0 money 1000)
{
_balance += money;
return true;
}
else return false;
}
public bool widthdraw(decimal money)
{
if (money 0 money = _balance - 1 )
{
_balance -= money;
return true;
}
else return false;
}
}
至于 在main方法中该怎样调用你自己写~~~
使用JavaBean。
public class Wallet {
private int money;
public int getMoney() {
return money;
}
public void setMoney(int money) {
this.money = money;
}
}
jsp中写java代码成为scriptlet,写在%%之间就可以了。
Scriptlet是包含在%和%之间的Java代码,在Web容器处理JSP页面时执行,通常会产生输出,并将输出发送到客户的输出流里。Scriptlet除了不能定义类和方法、不能用import引入类外,可以包含任何有效的Java代码。(Java类在Jsp外部定义,可用page指令的import属性引入,也可以Java Bean的形式使用。Java中的方法必须在类内定义,但Jsp允许使用声明定义方法。窗体(GUI)设计代码在Jsp中无效)。
Scriptlet例程:
%@ page contentType="text/html; charset=gb2312" %
html
head
titleJSP基本语法/title
/head
body
h1Scriptlet示例页面/h1
table border="1"
caption乘法口诀表/caption
%-- 在网页中嵌入Java代码的主要方法 --%
%
for(int i=1; i=9; i++) {
int j=1;
//out是JSP的一个内部对象,print方法用于向客户端输出数据
out.println("tr");
for(; j=i; j++) {
out.print("td" + j + "*" + i + "=" + j*i + "/td");
}
for(;j=9;j++) {
out.print("td /td");
}
out.println("/tr");
}
%
/table
/body
/html