Object ele=a.get(i);
if(ele instanceof java.lang.Integer){//cast to integer:
print("found Int");
}else{ //cast to string:
print("found: "+ele.getClass());
}
//prints: found: class com.cycling74.max.Atom$IntAtom
这是一大段代码的一部分,但这是相关部分。我需要知道如何通过Cycle74检查 Atom 类中元素的类型。
if(ele instanceof com.cycling74.max.Atom$IntAtom)
//ERROR: com.cycling74.max.Atom.IntAtom has private access in com.cycling74.max.Atom
有任何想法吗??非常感谢 - 这真的让我很头疼!