问答详情
源自:2-3 Java 中 String 类的常用方法 Ⅰ

代码输出错误?

http://img4.mukewang.com/5e4d3c480001387b14360678.jpg

这样子为什么不可以呀?

提问者:奶尤糯米团子 2020-02-19 21:47

个回答

  • 回头的浪子i
    2020-02-20 20:36:14
    已采纳

    fileName.length()-4 //11
    fileName.length() //15
    fileName.substring(fileName.length()-4,fileName.length()) //[11,15)---》java
    prefix="java"
    ==比较的是两个字符串的内存地址,很显然两个字符串的内存地址不一样
    这时需要用.equals比较两个字符串之间的值是否一样
    修改为fileName.substring(fileName.length()-4,fileName.length()).equals(prefix)