programing

클래스의 최종 정적 필드 값은 어떻게 참조할 수 있습니까?

projobs 2023. 1. 24. 08:31
반응형

클래스의 최종 정적 필드 값은 어떻게 참조할 수 있습니까?

JavaDoc을 사용하여 클래스의 최종 정적 필드 값을 참조하려면 어떻게 해야 합니까?

나는 그 것을 원한다.???이 예에서는 필드 값으로 대체됩니다.STATIC_FIELD.

/**
 * This is a simple class with only one static field with the value ???.
 */
public class Simple {

    /**
     * We can reference the value with {@value} here, 
     * but how do we reference it in the class JavaDoc?
     */
    public static final String STATIC_FIELD = "simple static field";

}

말인가요?{@value #STATIC_FIELD}?

언급URL : https://stackoverflow.com/questions/7868991/how-can-i-reference-the-value-of-a-final-static-field-in-the-class

반응형