gpt4 book ai didi

java - 是否可以使用注释处理器创建静态嵌套类?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:48:50 24 4
gpt4 key购买 nike

我想使用注解处理器创建一个静态嵌套类。可能吗?

我已经创建了@MyAnnotation注解:

package annotationprocessing;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
}

和注解处理器:

package annotationprocessing;

import java.io.BufferedWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.annotation.processing.Filer;
import javax.annotation.processing.ProcessingEnvironment;
import javax.annotation.processing.RoundEnvironment;
import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion;
import javax.lang.model.SourceVersion;
import javax.lang.model.element.TypeElement;
import javax.lang.model.element.VariableElement;
import javax.lang.model.util.Elements;
import javax.tools.JavaFileObject;

@SupportedAnnotationTypes({"annotationprocessing.MyAnnotation"})
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public class MyAnnotationProcessor extends javax.annotation.processing.AbstractProcessor {

private Filer filerUtils;
private Elements elementUtils;
private TypeElement myAnnotationTypeElement;
private Map<TypeElement, List<VariableElement>> annotatedFields;

@Override
public synchronized void init(ProcessingEnvironment processingEnv) {
super.init(processingEnv);

filerUtils = processingEnv.getFiler();
elementUtils = processingEnv.getElementUtils();
myAnnotationTypeElement = elementUtils.getTypeElement(MyAnnotation.class.getCanonicalName());
}

@Override
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
annotatedFields = new HashMap<>();

roundEnv.getElementsAnnotatedWith(myAnnotationTypeElement)
.stream()
.map(element -> (VariableElement) element)
.forEach(this::processAnnotation);

if (annotatedFields.isEmpty()) {
return true;
}

System.err.println(annotatedFields);

for (Map.Entry<TypeElement, List<VariableElement>> entry : annotatedFields.entrySet()) {
TypeElement enclosingClass = entry.getKey();

try {
JavaFileObject javaFileObject = filerUtils.createSourceFile(enclosingClass.getQualifiedName().toString() + "$Nested");
try (BufferedWriter writer = new BufferedWriter(javaFileObject.openWriter())) {
if (elementUtils.getPackageOf(enclosingClass).getQualifiedName().length() > 0) {
writer.write("package " + elementUtils.getPackageOf(enclosingClass).getQualifiedName() + ";");
writer.newLine();
}
writer.write("public /*static*/ class " + enclosingClass.getSimpleName() + "$Nested {");
writer.newLine();
for (VariableElement varElement : entry.getValue()) {
writer.write("static int " + varElement.getSimpleName() + ";");
writer.newLine();
}
writer.newLine();
writer.write("}");
}
} catch (IOException ex) {
Logger.getLogger(MyAnnotationProcessor.class.getName()).log(Level.SEVERE, null, ex);
}
}

return true;
}

private void processAnnotation(VariableElement sharedElement) {
TypeElement enclosingClass = (TypeElement) sharedElement.getEnclosingElement();
annotatedFields.putIfAbsent(enclosingClass, new ArrayList<>());
annotatedFields.get(enclosingClass).add(sharedElement);
}
}

编译类时(javac -processor annotationprocessing.MyAnnotationProcessor -cp annotationprocessing.jar TestClass.java)

package org.full.path;
import annotationprocessing.MyAnnotation;
public class TestClass {

public static class OtherNested {
static int staticInt;
}

@MyAnnotation
int staticInt;
public static void main(String[] args) {
System.out.println("other: " + TestClass.OtherNested.staticInt);
//System.out.println("not working: " + TestClass.Nested.staticInt);
System.out.println("generated: "+TestClass$Nested.staticInt);
}
}

MyAnnotationProcessor 处理源文件并生成TestClass$Nested.class 文件,但只能使用TestClass$Nested 访问名称而不是像嵌套类中的 TestClass.Nested。此外,我不能在生成代码中使用 static 关键字(因为它完全被视为最高级别的类)。

也许有一种方法可以通过添加静态嵌套类来完全重写输入源代码?

最佳答案

为嵌套类创建一个文件在这里似乎不是正确的方法——如果生成的源文件被编译,它将被视为顶级类,即使名称 < em>看起来像一个嵌套类。

嵌套类和封闭类在它们的字节码中相互引用。来自 JVM Specification, Chapter 4.7.6. The InnerClasses Attribute , 关于 classes[] 项目:

In addition, the constant_pool table of every nested class and nested interface must refer to its enclosing class, so altogether, every nested class and nested interface will have InnerClasses information for each enclosing class and for each of its own nested classes and interfaces.

因此您可以为嵌套类创建一个 .class 文件(为内部类使用正确的字节码结构),然后使用一些字节码操作库来更改封闭类的实现。

您实际上不应该使用注释处理器更改现有类。无论如何,这似乎是可能的,正如所解释的那样here .

这一切看起来都需要付出很多努力。如果可能的话,我会避免所有这些并尝试不同的方法。很难说出你的用例是什么,但可能会生成 TestClass 的子类并将你的静态类放入子类或类似的东西中。

关于java - 是否可以使用注释处理器创建静态嵌套类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47303883/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com