ANTLR,C# 目标中缺少方法

发布于 2024-09-14 13:33:32 字数 323 浏览 3 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文