标题:请大家帮忙看看这个问题出现在哪里? 谢谢了
只看楼主
刘俊杰
Rank: 2
等 级:论坛游民
帖 子:20
专家分:21
注 册:2014-12-6
结帖率:60%
已结贴  问题点数:20 回复次数:3 
请大家帮忙看看这个问题出现在哪里? 谢谢了
public class Student1 {
    static String words = "全局变量";
    public void getStu(){
        String words = "局部变量";
        System.out.println("words 变量现在是:"+words);
        System.out.println("访问全局变量:"+this.words);
    }
    public static void main(String[]args){
        Student1 student = new Student();
        student.getStu();
    }

}

出现的错误是
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
    Student cannot be resolved to a type

    at Student1.main(Student1.java:10)
搜索更多相关主题的帖子: problem thread public cannot 
2015-02-25 12:53
刘俊杰
Rank: 2
等 级:论坛游民
帖 子:20
专家分:21
注 册:2014-12-6
得分:0 
有人吗
2015-02-25 13:16
菜鸟之路
Rank: 2
来 自:河南 郑州
等 级:论坛游民
帖 子:6
专家分:24
注 册:2014-9-9
得分:10 
Student1 student = new Student() //  应该是 new Student1()  复制到编辑器一看就知道了

曾经沧海难为水,除却巫山不是云。
2015-02-25 17:58
日知己所无
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:贵宾
威 望:38
帖 子:427
专家分:2071
注 册:2014-3-22
得分:10 
程序代码:
public class Student1 {
    static String words = "全局变量";

    public static void main(String[] args) {
        Student1 student = new Student1();
        student.getStu();
    }

    public void getStu() {
        String words = "局部变量";
        System.out.println("words 变量现在是:" + words);
        System.out.println("访问全局变量:" + this.words);
    }
}


words 变量现在是:局部变量
访问全局变量:全局变量
2015-02-28 12:26



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-442182-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.309960 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved