0
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.lang.*;
public class Main extends Frame
{
Label SourceLabelL = new Label("source");
Label SourceLabel = new Label("");
Label TargetLabel = new Label("");
Label FileNameLabel = new Label("File Name: ");
Button TargeButton = new Button("Target");
Button OKButton = new Button("OK ");
GridBagLayout gbl;
GridBagConstraints c;
public static void main(String[] args)
{
Main m = new Main();
}
Main()
{
gbl = new GridBagLayout();
c = new GridBagConstraints();
int colwidth[]={1,1,1,1,1,1,1,1};
int colheight[]={1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}; // theres 18
double colweightb[]={1,1,1,1,1,1,1,1};
gbl.SetLayout(Display);
gbl.SetBounds(0,0,300,900);
找不到符號 gbl.SetLayout(Display); 符號:變量顯示器 位置:class Main 我不確定這裏做什麼。 任何幫助肯定是不錯的錯誤找不到符號Main();第20行符號:方法主要()位置類別主要1錯誤
嘿,這似乎解決我的問題。當時間到期時,我會將您的答案標記爲正確。謝謝。 – MrBridgeJumper
我很高興它爲你工作。嘗試找到一個正常的功能和構造函數之間的區別..這將是幫助! – Kakarot
雅我今天和我的教授談過了,他說要爲Main創建一個構造函數,並猜測我忘了該怎麼做...... – MrBridgeJumper