为什么程序给出“非法类型开始”?错误?

发布于 2024-08-26 00:07:37 字数 596 浏览 5 评论 0原文

这是相关的代码片段:

public static Rand searchCount (int[] x) 
{
    int a ; 
    int b ; 
    int c ; 
    int d ; 
    int f ; 
    int g ;
    int h ; 
    int i ; 
    int j ;
    Rand countA = new Rand () ;
        for (int l= 0; l<x.length; l++) 
        {
            if (x[l] = 0) 
            a++ ;
            else if (x[l] = 1) 
            b++ ;
        }
    }
    return countA ;

}

(Rand 是该方法所在的类的名称)

编译时收到此错误消息:

Rand.java:77: illegal start of type
        return countA ;
        ^

这里出了什么问题?这个错误信息是什么意思?

here is the relevent code snippet:

public static Rand searchCount (int[] x) 
{
    int a ; 
    int b ; 
    int c ; 
    int d ; 
    int f ; 
    int g ;
    int h ; 
    int i ; 
    int j ;
    Rand countA = new Rand () ;
        for (int l= 0; l<x.length; l++) 
        {
            if (x[l] = 0) 
            a++ ;
            else if (x[l] = 1) 
            b++ ;
        }
    }
    return countA ;

}

(Rand is the name of the class that this method is in)

when compiling it get this error message:

Rand.java:77: illegal start of type
        return countA ;
        ^

what's going wrong here? what does this error message mean?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离去的眼神 2024-09-02 00:07:37

return 语句之前的右大括号放错了位置。

You have a misplaced closing brace before the return statement.

青丝拂面 2024-09-02 00:07:37

返回类型之前有一个额外的“{”。
您可能还想在 if 和 else 条件中放置“==”而不是“=”。

You have an extra '{' before return type.
You may also want to put '==' instead of '=' in if and else condition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文