ANTLR,C# 目标中缺少方法
我使用 ANTLR 从树语法生成了 C# 代码,但找不到 downup() 方法。调用顺序:是否
topdown();
bottomup();
等同于 downup() 方法?为什么Java中存在该方法,而C#中却没有?为什么他们(作者)建议重写以下方法:
protected override void Topdown() { topdown(); }
protected override void Bottomup() { bottomup(); }
而 C# 却说没有这样的方法可以重写?
I generated the C# code from tree grammar using ANTLR and I cannot find the method downup(). Is the sequence of calls:
topdown();
bottomup();
equivalent to downup() method? Why the method does exist in Java but not in C#? And why do they (the authors) advise to override the following methods:
protected override void Topdown() { topdown(); }
protected override void Bottomup() { bottomup(); }
whereas C# says there are no such methods to override?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论