importjava.awt.*;importjava.awt.event.*;classShopFrameextendsFrameimplementsActionListener{Labellabel1,label2,label3,label4;Buttonbutton1,button2,button3,button4,button5;TextAreatext;Panelpanel1,panel2;staticfloatsum=0.0f;ShopFrame(Strings){super(s);setLayout(newBorderLayout());label1=newLabel("面紙:3元",Label.LEFT);label2=newLabel("鋼筆:5元",Label.LEFT);label3=newLabel("書:10元",Label.LEFT);label4=newLabel("襪子:8元",Label.LEFT);button1=newButton("加入購(gòu)物車");button2=newButton("加入購(gòu)物車");button3=newButton("加入購(gòu)物車");button4=newButton("加入購(gòu)物車");button5=newButton("查看購(gòu)物車");text=newTextArea("商品有:"+"\n",5,10);text.setEditable(false);addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){System.exit(0);}});button1.addActionListener(this);button2.addActionListener(this);button3.addActionListener(this);button4.addActionListener(this);button5.addActionListener(this);panel1=newPanel();panel2=newPanel();panel1.add(label1);panel1.add(button1);panel1.add(label2);panel1.add(button2);panel1.add(label3);panel1.add(button3);panel1.add(label4);panel1.add(button4);panel2.setLayout(newBorderLayout());panel2.add(button5,BorderLayout.NORTH);panel2.add(text,BorderLayout.SOUTH);this.add(panel1,BorderLayout.CENTER);this.add(panel2,BorderLayout.SOUTH);setBounds(100,100,350,250);setVisible(true);validate();}publicvoidactionPerformed(ActionEvente){if(e.getSource()==button1){text.append("一個(gè)面紙、");sum=sum+3;}elseif(e.getSource()==button2){text.append("一只鋼筆、");sum=sum+5;}elseif(e.getSource()==button3){text.append("一本書、");sum=sum+10;}elseif(e.getSource()==button4){text.append("一雙襪子、");sum=sum+8;}elseif(e.getSource()==button5){text.append("\n"+"總價(jià)為:"+"\n"+sum);}}}publicclassShopping{publicstaticvoidmain(String[]args){newShopFrame("購(gòu)物車");}}我沒用Swing可能顯示不出來你的效果。不滿意得話我在給你編一個(gè)。
創(chuàng)新互聯(lián)公司專注于網(wǎng)站建設(shè)|網(wǎng)頁維護(hù)|優(yōu)化|托管以及網(wǎng)絡(luò)推廣,積累了大量的網(wǎng)站設(shè)計(jì)與制作經(jīng)驗(yàn),為許多企業(yè)提供了網(wǎng)站定制設(shè)計(jì)服務(wù),案例作品覆蓋成都發(fā)電機(jī)回收等行業(yè)。能根據(jù)企業(yè)所處的行業(yè)與銷售的產(chǎn)品,結(jié)合品牌形象的塑造,量身定制品質(zhì)網(wǎng)站。
class Car
{
// 車輛屬性
private String brand; // 品牌
private double engineDisplacement;// 排氣量
private double speed;// 當(dāng)前速度
private boolean status;// 啟動(dòng)狀態(tài)
private double maxSpeed;// 最大速度
public double getSpeed () {
return this.speed;
}
public Car(String brand, double engineDisplacement, double maxSpeed) {
this.brand = brand;
this.engineDisplacement = engineDisplacement;
this.maxSpeed = maxSpeed;
// 其他屬性也要有初始值,不然執(zhí)行出錯(cuò)。
this.speed = 0;
this.status = false;
}
/** 啟動(dòng) */
public void start() {
this.status = true;
printNowStatus ();
}
/** 關(guān)閉(熄火) */
public void stop() {
// 只在速度為0時(shí)關(guān)閉(貌似樓上兩位沒仔細(xì)看題…)
if (this.speed == 0)
{
this.status = false;
}
printNowStatus ();
}
/** 加速 */
public void speedUp() {
// 只在啟動(dòng)時(shí)可以加速
if (this.status)
{
this.speed = this.speed + 20;
if (this.speed this.maxSpeed)
{
this.speed = this.maxSpeed;
}
}
printNowStatus ();
}
/** 減速 */
public void slowDown() {
// 只在啟動(dòng)時(shí)可以減速
if (this.status)
{
this.speed = this.speed - 10;
if (this.speed 0)
{
this.speed = 0;
}
}
printNowStatus ();
}
/** 狀態(tài)打印,在每次啟動(dòng),加減速,關(guān)閉時(shí)調(diào)用 */
private void printNowStatus () {
System.out.println("轎車【" + this.brand + "】現(xiàn)在的啟動(dòng)狀態(tài)是:" + this.status + "速度是:" + this.speed +"。");
}
}
public class TestCar
{
public static void main(String[] args)
{
Car myCar = new Car ("紅旗", 2, 120);
//啟動(dòng)
myCar.start();
// 循環(huán)加速到120
while (myCar.getSpeed() 120)
{
myCar.speedUp();
}
//循環(huán)減速
while (myCar.getSpeed() 0)
{
myCar.slowDown();
}
//關(guān)閉
myCar.stop();
}
}
/* 直接拿文本寫的,我用的電腦沒裝jdk,樓主自己到Java開發(fā)環(huán)境下調(diào)試,應(yīng)該沒什么問題… */
最簡(jiǎn)單的java代碼肯定就是這個(gè)了,如下:
public class MyFirstApp
{
public static void main(String[] args)
{
System.out.print("Hello world");
}
}
“hello world”就是應(yīng)該是所有學(xué)java的新手看的第一個(gè)代碼了。如果是零基礎(chǔ)的新手朋友們可以來我們的java實(shí)驗(yàn)班試聽,有免費(fèi)的試聽課程幫助學(xué)習(xí)java必備基礎(chǔ)知識(shí),有助教老師為零基礎(chǔ)的人提供個(gè)人學(xué)習(xí)方案,學(xué)習(xí)完成后有考評(píng)團(tuán)進(jìn)行專業(yè)測(cè)試,幫助測(cè)評(píng)學(xué)員是否適合繼續(xù)學(xué)習(xí)java,15天內(nèi)免費(fèi)幫助來報(bào)名體驗(yàn)實(shí)驗(yàn)班的新手快速入門java,更好的學(xué)習(xí)java!
class test
{
public static void main(String[] args)
{
System.out.println("Hello World!");
}
}
在C盤保存文件名為test
進(jìn)入cmd運(yùn)行 javac test.java 進(jìn)行編譯
然后運(yùn)行test.java看到輸出hello world
我的第一個(gè)程序就完成了
如果運(yùn)行javac 報(bào)錯(cuò)的話那可能是環(huán)境變量沒有配置好,在仔細(xì)看看重新配置一下
//定義一個(gè)StringBuf類
class StringBuf
{
//定義守保護(hù)的構(gòu)造方法,類的空構(gòu)造方法建議使用public
protected StringBuf()
{
}
//定義程序入口main方法
public static void main(String []args)
{
//定義一個(gè)StringBuffer變量buf,初始值為java
StringBuffer buf =new StringBuffer("java");
//在buf后面追加Guide Verl/字符串
buf.append("Guide Verl/");
//在buf后面追加數(shù)字3
buf.append(3);
//這里在buf變量的第5+1為插入Student字符串
//由于為標(biāo)志是從0開始,所以是在5+1為
int index=5;
buf.insert(index,"Student");
//這里在buf變量的第23+1字改成.
index=23;
buf.setCharAt(index,'.');
//這里在buf變量的第24+1到25+1的字符替換成4.
int start=24;
int end=25;
buf.replace(start,end,"4");
//將buf裝換為字符串并且輸出
String s=buf.toString();
System.out.println(s);
}
}
注:你的程序存在下標(biāo)益處的異常
即你的buf實(shí)際上只有N為長(zhǎng),而你程序中的操作超過了他的長(zhǎng)度
public class TestStar {
public static void main(String[] args) {
String star = "*";
for (int i = 0; i 5; i++) {
if (i == 0) {
System.out.print(" " + star);
System.out.println();
}
if (i == 1) {
for (int z = 0; z 4; z++) {
System.out.print(" " + star);
}
System.out.println();
}
if (i == 2) {
System.out.print(" ");
for (int x = 0; x 3; x++) {
System.out.print(" " + star);
}
System.out.println();
}
if (i == 3) {
for (int y = 0; y 2; y++) {
System.out.print(" " + star + " ");
}
}
}
}
}
是好使的 但是我沒找到畫五角星有什么規(guī)律(五角星好象不是正規(guī)圖形吧?)如果還有什么要求的話 補(bǔ)充問題(如果是用*填充所有的東西 不包括 “ ”的話 我可以重新再給你寫一個(gè))