我怎么能看到它们是否属于同一类型


private static void ParseInput(String str) 
    {
        char c ;
        Integing item1;
        boolean result;
        int n =str.length();
        Stack StItem = new Stack(n);
        Queue QItem = new Queue(n);
        for (int i=0; i<n; i++){
            c = str.charAt(i);
            if ((c == '(') || (c=='[') || (c=='{')){
                Integing item = new Integing(i,c);
                StItem.push(item); 
            }else if((c==')') || (c==']') || (c=='}')){
                item1 = StItem.pop();               
                result = item1.getChar().class ==(c.class); //where i do the check
                if (result ){                     
                    Pair pair1 = new Pair(item1.getNumber(),i);
                    QItem.put(pair1);
                }else{
                    System.out.println("Syntax error");
                    System.exit(-1);
                }
            }
        }           
    }

public class Integing
{
    private int num;
    private char par;
    public  Integing(int numb,char paren)
    {
        num = numb;
        par = paren;
    }
    public  char getChar(){
        return this.par;   //The method i use to get the exact type
    }
    public  int getNumber(){
        return this.num;
    }
}

我想检查 item1 和 c 是否属于同一类型。事实上,我使用了一个方法,getChar(( 来 完全按照我想检查的内容。我在互联网上找到了方法getClass或class。当我 使用 getClass 我有取消引用错误,当我使用该类时,我有这些错误。

![1]: https://i.stack.imgur.com/1kQZg.png

我认为您正在寻找的是实例,格式如下:

Boolean isChar = item instanceof Character;

以下是一些有关用法的文档:http://www.java2s.com/Tutorial/Java/0060__Operators/TheinstanceofKeyword.htm

不过,我对你到底想做什么有点困惑 - 虽然 instanceof 实现了你用 .class 想要的功能,但我看不出它在你的代码上下文中如何帮助你。

相关内容

  • 没有找到相关文章

最新更新