-1

不确定标题是否有意义,但我试图从接收linkedhashmap的类返回成功消息,但是当我尝试编译文件时,eclipse给了我错误,提供

Remove arguments to match 'logFile()'

Create constructor 'logFile(Map<String, String>)'

如何设置它来发送Map和接收一个String?谢谢艺术

根据下面的@Jeff Storey 更正了代码,并针对 Eclipse 进行了错误抑制

调用类

 eventLog.put(stringA,stringB);
 logFile logStuff = new logFile();
 successRtn = logFile.Process(eventLog); 
   // Do Stuff with SuccessRtn

日志文件类

 public class  logFile {
    static String Success = "Fail";

  public static String Process(Map<String, String> eventlog){
    // Do Stuff 
    Success = "Yeh!"
    return Success;
   }

  public static void main(String[] args){
  @SuppressWarnings("static-access")
  String result = new logFile().Procces(eventLog);
  System.out.println("result = " + result);
}
4

1 回答 1

1

main方法是一种特殊的方法,它的签名必须在public static void main(String[] args)用作应用程序的入口点时。创建执行实际工作的第二种方法,如下所示:

public class LogFile {

     public String process(Map<String,String> eventLog) {
        // do stuff
        return success;
     }

     public void main(String[] args) {
         // eventLog will probably be read from a filepath passed into the args
        String result = new LogFile().process(eventLog);
        System.out.println("result = " + result);
     }
}

请注意,您的许多命名约定也是非标准的。类应以大写字母开头,变量应以小写字母开头。

于 2012-05-23T02:23:20.913 回答