Char cannot be dereferenced? using compareTo

2019-08-04 09:52发布

I'm trying to make a program that will read in a string and compare each character in the string to see if it is in alphabetical order.

public class Main
{
    public static void Main ( String[] args)
    {
        System.out.println("#Please enter the string: ");
        String s = BIO.getString();

        while(!s.equals("END")){
            int length = s.length();
            String sLC = s.toLowerCase();
            int count = 0;
            boolean inOrder = true;

            for(int i = 0; i < length - 1 ; i++){
                if(sLC.charAt(i).compareTo(sLC.charAt(i+1)) > 0) {
                    inOrder = false;
                    break;
                }   
            }  

            System.out.println("#Please enter the string: ");  
            s = BIO.getString();
        }
    }
}

I am using blueJ and when I try to compile this it is giving me the error 'char cannot be dereferenced and highlighting the 'compareTo' method in my IF statement?

2条回答
闹够了就滚
2楼-- · 2019-08-04 10:23

sLC.charAt(i) gives you primitive char. And you cannot invoke compareTo on primitives. You need to wrap it in a Character wrapper object, or just use comparison operator.

if(Character.valueOf(sLC.charAt(i)).compareTo(
   Character.valueOf(sLC.charAt(i+1))) > 0)

or simply: -

if(sLC.charAt(i) > sLC.charAt(i+1)) 
查看更多
三岁会撩人
3楼-- · 2019-08-04 10:24

.charAt() returns a char, which is a primitive. It does not have a .compareTo() method.

char behaves much like a (smaller) int; use the following instead:

if(sLC.charAt(i) > sLC.charAt(i+1)) {
查看更多
登录 后发表回答