发布网友 发布时间:2024-10-23 22:51
共4个回答
热心网友 时间:2024-11-05 22:33
String getShape(Graphics g,int a,int b){....}这个方法里面没有返回语句return。就是说如果方法有返回类型的话,那么就必须要有return 语句。
改正方案:
void getShape(Graphics g,int a,int b){....}
热心网友 时间:2024-11-05 22:34
String getShape(Graphics g,int a,int b)
你的这个方法是String类型的,但却没有返回值 return“”;所以报错哦
热心网友 时间:2024-11-05 22:34
String getShape(Graphics g,int a,int b)
这个方法没有返回值,改为void getShape(Graphics g,int a,int b)就可以
热心网友 时间:2024-11-05 22:35
getShape方法缺少返回值
将getShape的返回类型设为void或返回一个字符串。