NBEANS找不到或加载Main类

发布于 2025-01-20 13:30:53 字数 1222 浏览 0 评论 0原文

您好,好日子,这是第一个面向对象的类,我抛出了这个错误?我该如何修复?谢谢。 错误 ------------------------------------------------------------------------------- ------------------

--- exec-maven-plugin:3.0.0:exec (default-cli) @ Suma2 --- 错误:找不到或加载主类Com.mycompany.suma2.suma.sumamain 引起的: 命令执行失败。

有两个代码,这是

package com.mycompany.suma2.suma;
 
 
public class SumaMain {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
         
         
        System.out.println("Give me the first value ");
        int valueOne=sc.nextInt();
 
  System.out.println("Give me the first value");
        int valueTwo = sc.nextInt() ;
         
         
        Sum values = new Sum(valueOne, valueTwo){
        values.Print();
    }                    
} 


另一个代码

 
 
  
public class Sum {
        private int vOne, vTwo, Result ;
     
    public Sum (int valueOne , int valueTwo ) {
           this.vOne = valueOne ;
        this.VTwo = valueTwo ;
        }   
    public void Operation(){
    Result = vOne +vTwo ;
     
    }
    public void Print(){
        Operation();
        System.out.println("The result of the sum is : + Result ");
     
    }
}

Hello good day this is the first object oriented class, and I throw this error? How do I fix it? Thank you.
ERROR
--------------------------------[ jar ]---------------------------------

--- exec-maven-plugin:3.0.0:exec (default-cli) @ Suma2 ---
Error: Could not find or load main class com.mycompany.suma2.suma.SumaMain
Caused by: java.lang.ClassNotFoundException: com.mycompany.suma2.suma.SumaMain
Command execution failed.

There are two codes, here is one

package com.mycompany.suma2.suma;
 
 
public class SumaMain {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
         
         
        System.out.println("Give me the first value ");
        int valueOne=sc.nextInt();
 
  System.out.println("Give me the first value");
        int valueTwo = sc.nextInt() ;
         
         
        Sum values = new Sum(valueOne, valueTwo){
        values.Print();
    }                    
} 


Here the other

 
 
  
public class Sum {
        private int vOne, vTwo, Result ;
     
    public Sum (int valueOne , int valueTwo ) {
           this.vOne = valueOne ;
        this.VTwo = valueTwo ;
        }   
    public void Operation(){
    Result = vOne +vTwo ;
     
    }
    public void Print(){
        Operation();
        System.out.println("The result of the sum is : + Result ");
     
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文