所以我试图交出一个物体,但它告诉我:
命令类型中的方法drawCommand(Launcher)
不是
适用于参数()
和
a
无法解析为变量。
import java.awt.Color;
import java.awt.Graphics;
import java.util.Scanner;
import javax.swing.JFrame;
public class Launcher extends JFrame {
Launcher() {
setSize(300, 400);
setTitle("An Empty Frame");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
private int width = 1000;
private int hight = 750;
public static void main(String[] args) {
Launcher a = new Launcher();
a.repaint();
a.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
a.setTitle("Grafik");
a.setSize(1000, 750);
a.setVisible(true);
a.operand();
}
public void paint(Graphics stift) {
stift.drawString("A A A A A A A A A A ", 50, 50);
stift.setColor(Color.LIGHT_GRAY);
for (int i = 0; i < width; i = i + 10)
stift.drawLine(i, 0, i, hight);
for (int i = 0; i < hight; i = i + 10)
stift.drawLine(0, i, width, i);
}
public void operand() {
System.out.println("Bitte geben sie etwas ein: ");
Scanner eingabe1 = new Scanner(System.in);
String command = eingabe1.nextLine();
// if(eingabe1!=null)
// eingabe1.close();
switch (command) {
case "A":
Command c = new Command();
c.drawCommand(a); // here are the error messages
System.out.println("draw fertig");
// fenster.repaint();
System.out.println("repaint fertig");
}
}
}
这是a的来源:
import java.awt.Color;
import java.awt.Graphics;
import java.util.Scanner;
public class Command extends Commands {
private String text = "";
public Command() {
super();
text = "";
}
public Command(int width, int hight, int[] cornerLocation, String text) {
super(width, hight, cornerLocation);
this.text = text;
}
public void drawCommand(Launcher a) {
System.out.println("Bitte geben sie den Text ein: ");
Scanner eingabe2 = new Scanner(System.in);
text = eingabe2.nextLine();
// if(eingabe2!=null)
// eingabe2.close();
}
public void paint(Graphics stift) {
stift.setColor(Color.RED);
stift.drawString("Hasebraten ",150,150);
stift.drawRect(cornerLocation[0], cornerLocation[1], width, hight);
}
}
由于我还是JFrames和Graphics的新手,因此不断出错,但是我无法解决这一问题
最佳答案
在此处发生错误的代码中,作用域中没有变量a
,因此编译器会告诉您这一点。
switch (command) {
case "A":
Command c = new Command();
c.drawCommand(a); // a is not in scope here so this does not compile..
System.out.println("draw fertig");
// fenster.repaint();
System.out.println("repaint fertig");
}
但是,此时确实有
Launcher
可用,因为所讨论的类本身是Launcher
。如果将代码更改为:
c.drawCommand(this);
然后,调用
Launcher
对象的drawCommand
方法的Command
对象将自身作为drawCommand
传递给Launcher
方法。这将满足语法要求,并克服此特定错误。
我不确定您打算如何执行代码,因此不确定是否可以真正解决您的所有问题,但是肯定可以使您摆脱该特定错误。
关于java - 为什么不交出我的物品?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30688611/