如何编写构造函数而不是使用Lombok来访问公共级别?
我将访问级别 protected 更改为 public,但是如何编写构造函数而不是使用 Lombok 来执行下面的代码?
@RequiredArgsConstructor(access = AccessLevel.PUBLIC))
public class abc implements xyz<Event, Void> {
@NonNull private final Test<Lock<TransactionLock, TransactionLockId>> test;
..... }
I changed the access level protected to public but how to write the constructor instead of using Lombok for below code?
@RequiredArgsConstructor(access = AccessLevel.PUBLIC))
public class abc implements xyz<Event, Void> {
@NonNull private final Test<Lock<TransactionLock, TransactionLockId>> test;
..... }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有定义其他
final
字段,则应该是这样:It should be if there are no other
final
fields defined: