- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 JDT
的 Dom 方法添加对 StaticClassName.class
字段访问的调用,以访问现有类。
当我尝试使用 ast.newSimpleName("class")
创建简单名称时,出现 IllegalArgumentException
。
我认为这是因为 JDT
当它也用作字段名称时将其视为关键字。
是否有办法使JDT
接受“class”作为标识符名称或访问类对象的其他方式? (它必须在静态和非静态方法中工作)
最佳答案
如 this thread 中所述:
<Type>.class
is not a usual simple name, but rather aTypeLiteral
. So I think your code should look more like this:
TypeLiteral tr = ast.newTypeLiteral();
tr.setType(ast.newSimpleType(ast.newSimpleName("MyClass")));
Which in result creates expression "
Myclass.class
".By the way, there is a really nice
ASTView
plugin, with view of currently edited Java source fileAST
. It's very helpful in determining what are correct node types for different language statements. You can get it from here
(另请参阅 AST JDT core Dom javadoc )
关于eclipse - 在 JDT dom 中使用 class 作为字段名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1622160/
概述 CentOS Stream 成立于 2019 年,是“RHEL 下一步的滚动预览”。Red Hat 首席技术官 Chris Wright 和 CentOS 社区经理 Rich Bowen 各
我有一个使用 Mesosphere DC/OS 编排选项进行配置的 Azure 容器服务 (ACS) 集群。我可以在 Marathon UI 中创建一个应用程序。 但是,当我通过 Marathon U
我是一名优秀的程序员,十分优秀!