标题:抽像方法问题
只看楼主
josephzzq
Rank: 1
等 级:新手上路
帖 子:89
专家分:0
注 册:2007-3-18
 问题点数:0 回复次数:8 
抽像方法问题
请问一下,我这个程序怎样改才能正确运行呢,最好能说说理由,谢谢!!
import java.lang.Math.*;
abstract class shape{
abstract void area();
}
class rectangle extends shape{
float width,height;
public void retangle(float a,float b){
width=a;height=b;}
public void area(){
System.out.println("Area is "+(width*height));
}
}
class circle extends shape{
float radius;
public void circle(float r){
radius=r;}
public void area(){
System.out.println("Area is "+(radius*radius*Math.PI));
}
}
public class test1{
public static void main(String args[])
{rectangle rect=new rectangle(5,10);
rect.area();
circle cir=new circle(2);
cir.area();
}
}
搜索更多相关主题的帖子: abstract public import 最好 
2007-06-12 00:03
大嘴先生2
Rank: 1
等 级:新手上路
威 望:2
帖 子:815
专家分:0
注 册:2006-4-17
得分:0 

import java.lang.Math.*;
abstract class shape{
abstract void area();
}
class rectangle extends shape{
float width,height;
public rectangle(int i, int j) {
// TODO Auto-generated constructor stub
}
public void retangle(float a,float b){
width=a;height=b;}
public void area(){
System.out.println("Area is "+(width*height));
}
}
class circle extends shape{
float radius;
public circle(int i) {
// 这类没定义!
}
public void circle(float r){
radius=r;}
public void area(){
System.out.println("Area is "+(radius*radius*Math.PI));
}
}
public class Fushu{
public static void main(String args[])
{rectangle rect=new rectangle(5,10);
rect.area();
circle cir=new circle(2);
cir.area();
}
}

骑白马的未必是王子,也可能是唐僧;有翅膀的未必是天使,也可能是鸟人。
2007-06-12 08:32
大嘴先生2
Rank: 1
等 级:新手上路
威 望:2
帖 子:815
专家分:0
注 册:2006-4-17
得分:0 

//import java.lang.Math.*;这引用没什么意义啊!
abstract class shape{
abstract void area();
}
class rectangle extends shape{
float width,height;
public rectangle(int i, int j) {
// 这类的构造方法怎么没写?
}
public void retangle(float a,float b){
width=a;height=b;}
public void area(){
System.out.println("Area is "+(width*height));
}
}
class circle extends shape{
float radius;
public circle(int i) {
// 这类没定义!
}
public void circle(float r){
radius=r;}
public void area(){
System.out.println("Area is "+(radius*radius*Math.PI));
}
}
public class Fushu{
public static void main(String args[])
{rectangle rect=new rectangle(5,10);
rect.area();
circle cir=new circle(2);
cir.area();
}
}

骑白马的未必是王子,也可能是唐僧;有翅膀的未必是天使,也可能是鸟人。
2007-06-12 08:51
大嘴先生2
Rank: 1
等 级:新手上路
威 望:2
帖 子:815
专家分:0
注 册:2006-4-17
得分:0 

路过
LZ再仔细看看
改的不怎么好
在上课,呵呵


骑白马的未必是王子,也可能是唐僧;有翅膀的未必是天使,也可能是鸟人。
2007-06-12 09:08
千里冰封
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:灌水之王
等 级:版主
威 望:155
帖 子:28477
专家分:59
注 册:2006-2-26
得分:0 
[CODE]abstract class shape{
abstract void area();
}
class rectangle extends shape{
float width,height;
public rectangle(float a,float b){
width=a;height=b;}
public void area(){
System.out.println("Area is "+(width*height));
}
}
class circle extends shape{
float radius;
public circle(float r){
radius=r;}
public void area(){
System.out.println("Area is "+(radius*radius*Math.PI));
}
}
public class test1{
public static void main(String args[]) {
rectangle rect=new rectangle(5,10);
rect.area();
circle cir=new circle(2);
cir.area();
}
}[/CODE]

这是能运行的程序

可惜不是你,陪我到最后
2007-06-12 10:40
千里冰封
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:灌水之王
等 级:版主
威 望:155
帖 子:28477
专家分:59
注 册:2006-2-26
得分:0 
import java.lang.Math.*;//这是什么,静态导入吗?错
abstract class shape{
abstract void area();
}
class rectangle extends shape{
float width,height;
public void retangle(float a,float b){//构造函数不能有返回值,还有你的rectangle打错了,少了个c
width=a;height=b;}
public void area(){
System.out.println("Area is "+(width*height));
}
}
class circle extends shape{
float radius;
public void circle(float r){//同理,这个也不是构造函数,把void去掉才是构造函数
radius=r;}
public void area(){
System.out.println("Area is "+(radius*radius*Math.PI));
}
}
public class test1{
public static void main(String args[])
{rectangle rect=new rectangle(5,10);
rect.area();
circle cir=new circle(2);
cir.area();
}
}

可惜不是你,陪我到最后
2007-06-12 10:42
大嘴先生2
Rank: 1
等 级:新手上路
威 望:2
帖 子:815
专家分:0
注 册:2006-4-17
得分:0 

朋友,听听千里老大的吧
改的满好!


骑白马的未必是王子,也可能是唐僧;有翅膀的未必是天使,也可能是鸟人。
2007-06-12 12:17
josephzzq
Rank: 1
等 级:新手上路
帖 子:89
专家分:0
注 册:2007-3-18
得分:0 

呵呵,谢谢你们这班有心人了!

2007-06-12 13:09
千里冰封
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:灌水之王
等 级:版主
威 望:155
帖 子:28477
专家分:59
注 册:2006-2-26
得分:0 
不用谢,大家互相帮助嘛

可惜不是你,陪我到最后
2007-06-12 14:04



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-146676-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018354 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved