数据类型为啥明明强制转换了还会错

来源:2-10 Java中的强制类型转换

qq_秦江辉_0

2015-10-26 22:42

public class HelloWorld{

    public static void main(String[] args) {

double heightAvg1=176.2;

int heightAvg2=(int)heightAvg1;

System.out.println(heightAvg1);

System.out.println(heightAvg2);

}

}

输入上面的代码出现以下错误error: cannot find symbol
int heightAvg2=inrheightAvg1;
^
symbol: variable inrheightAvg1
location: class HelloWorld
1 error

写回答 关注

3回答

  • 袁乐方
    2016-08-08 22:09:29

    error: cannot find symbol
    int heightAvg2=inrheightAvg1;
    ^
    symbol: variable inrheightAvg1
    location: class HelloWorld
    1 error


    意思是在"int heightAvg2=inrheightAvg1;"这一行中,

    你把变量名写错了,编辑器找不到"inrheightAvg1"这个变量在哪

    正确的写法是"int heightAvg2=(int)heightAvg1;"

    你再检查一下,如果按照你上面的那些代码,是不应该出现这个错误提示的,

    或者有可能是你把代码改好了,但是没有保存,所以编辑器报错。

  • 天启之魂
    2015-10-26 23:19:10

    代码没问题 你是不是用的imooc练习器 他提示你错误 那应该是网络延时的问题

  • 恒哥直走
    2015-10-26 23:00:51

    在我电脑上能够运行。

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题