Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 zeroc ICE 定义一个像下面这样的类;
class A { string someValue; sequence<A> children; };
但它似乎不起作用,失败:语法错误;
有没有办法做到这一点?
你可以试试 :
class A; sequence<A> ASequence; class A { string someValue; ASequence children; };