2014-02-24 46 views
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錯誤

回答

2

如果你想創造類主要的一個實例,則語法應該是:

Main m = new Main(); 

的Main()是類主要的構造

+0

嘿,這似乎解決我的問題。當時間到期時,我會將您的答案標記爲正確。謝謝。 – MrBridgeJumper

+0

我很高興它爲你工作。嘗試找到一個正常的功能和構造函數之間的區別..這將是幫助! – Kakarot

+0

雅我今天和我的教授談過了,他說要爲Main創建一個構造函數,並猜測我忘了該怎麼做...... – MrBridgeJumper