当程序说构建成功时,java没有发现主类错误

时间:2016-10-20 15:16:54

标签: java netbeans

您好,我目前正在执行此计划,以便创建像虚拟商店一样的工作。目前我使用NetBean IDE 8.1并在尝试测试程序时出错。它说,即使程序说我在尝试构建程序时构建成功。

我确实尝试按照此video中的说明进行操作,但空出image here

这是我的主要程序(我还没有完成程序,但这个错误阻止我测试它)

import java.util.Scanner;
 public class Zarashop {
 int choice;
 public static void main(String[] args, int clothA){
    Scanner absorb = new Scanner(System.in);

    // phase 1 login
    cloth cl = new cloth(); // declaring objects
    payment pay = new payment();
    personalinfo pi = new personalinfo();
    shipping ship = new shipping();
    receipt re = new receipt();
    System.out.println("Welcome to Zara's cloth Shopping Center");
    System.out.println("\nThis an online Shopping application will help you to buy "+ "a new cloth");
    System.out.println("Please enter your detail");
     System.out.println("\nPlease enter your name");
     String Name = absorb.nextLine(); // user input name
     System.out.println("\nAre you a student? (yes) or (no)");
     String personalchoice = absorb.nextLine(); // user input status


     //phase 2
     System.out.println("please choose your cloth" );
     System.out.println("cloth A detail : size: 170cm and red color  ");
     int cloathA = absorb.nextInt(); 
     System.out.println("enter quantity  ");
     int quantity = absorb.nextInt(); 

     pay.setclothA(clothA); // store value
     pay.setquantity(quantity); 

     // phase 3 payment
     System.out.println("please press 1 to calculate your payment");
     int choice = absorb.nextInt();
     if(choice == 1){
         pay.total();    
     }
     else {
    System.err.println("error!");
  } 
   }





    }

这是布料的主要课程(拼写错误)

   public class cloth {

  // superclass
   private int quantity; //  
 private int  clothA=200;
 //void
 void setclothA(int ca){
     clothA = ca;
 }
void setquantity(int q){
    quantity=q;
}

//get

int getclothA(){
    return clothA;
}
int getquantity(){
    return quantity;
    }

  }

我的个人信息主要课程

 public class personalinfo {

// superclass
public String Name; 
private int Password; 
private String TypeCard; 
private int CardNo;   
private String Address; 
private int TeleNo;   

//void


void setName(String n){
    Name = n;
}
void setPassword(int p){
    Password = p;
}
void setTypeCard(String tp){
    TypeCard = tp;
}
void setCardNo ( int cn){
    CardNo=cn;
}
void setAddress ( int a){
    CardNo=a;
}
void setTeleNo ( int tl){
    TeleNo=tl;
}
   //get

String getName(){
    return Name;

}
String getAddress(){
    return Address;
  }
     int getPassword(){
         return Password;
     }
     String getTypeCard(){
         return TypeCard;
     }
     int getCardNo(){
         return CardNo;
     }
     int getTeleNo (){
         return TeleNo;
     }
  }

我的子类付款          包zarashop;

  //subclass
  public class payment extends cloth {
 String Status = "Initial";
public void total(){

int ca = super.getclothA(); //fetching values
int q = super. getquantity();
int total= q*ca;

  }
 }



    public class receipt extends shipping{



}

我的发货

public class shipping extends payment  {
public int typeofshipping; 
//void 
void settypeofshipping(String ts){
    String typeofshipping = ts;
   }
  int gettypeofshipping(){
        return typeofshipping;
  } 
   }

接收的子类(我为程序保留此项以显示所有必要的用户输入)

 public class receipt extends shipping{



 }
谢谢大家,对不起我的糟糕节目和英语感到抱歉。

3 个答案:

答案 0 :(得分:4)

Java应用程序可以从命令行接受任意数量的参数,并且所有参数都被解释为String,这就是为什么main只将String数组作为参数。

将代码更改为

public static void main(String[] args)

您将能够启动您的应用程序。

如果需要支持数字命令行参数,则必须将表示数字的String参数转换为int:

int firstArg;
if (args.length > 0) {
    try {
        firstArg = Integer.parseInt(args[0]);
    } catch (NumberFormatException e) {
        System.err.println("Argument" + args[0] + " must be an integer.");
        System.exit(1);
    }
}
如果args [0]的格式不有效,

parseInt会抛出NumberFormatException。

示例来自official documentation

答案 1 :(得分:0)

这是你的错误:public static void main(String[] args**, int clothA**)

将其更改为 public static void main(String[] args)

答案 2 :(得分:0)

您需要将主要方法更改为public static void main(String[] args)。通过添加int clothA作为第二个参数,您正在查找签名,然后它将成为从中启动应用程序的无效主方法。

如果你想从控制台中检索某些内容,你会在args中找到你的论点。

然后您可以按如下方式检索clothA:

int clothA;
if (args.length > 0) {
    try {
        clothA = Integer.parseInt(args[0]);
    } catch (NumberFormatException e) {
        System.err.println("Argument" + args[0] + " must be an integer.");
        System.exit(1);
    }
}