gpt4 book ai didi

java - java注释只适用于它正下方的属性吗?

转载 作者:行者123 更新时间:2023-11-30 02:23:12 25 4
gpt4 key购买 nike

假设我有类似的东西

class Example
{
@MyCustomAnnotation
private int property_1;
private int property_2;

private int property_3;
}

@MyCustomAnnotation 是否适用于 property_1 和 property_2 属性,还是仅适用于 property_1

如果是后者,有没有办法让@MyCustomAnnotation同时应用于property_1和property_2,但不应用于property_3? (例如,其下方的所有内容均以 \n 终止)

最佳答案

Does @MyCustomAnnotation apply to property_1 & property_2 attributes

没有。

or just property_1?

是的。

If the latter, is there any way to make @MyCustomAnnotation apply to both property_1 & property_2 but not property_3?

没有。

(e.g. everything below it terminating at \n)

\n 对解析器来说并不重要。

你不能只制定自己的规则。注释适用于它们所注释的声明。

关于java - java注释只适用于它正下方的属性吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46271953/

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