我们在java项目中是否需要空类?如果是,那为什么呢?

时间:2017-05-09 04:41:47

标签: java project empty-class

在空类(没有字段和属性)中,编译器编译后编译器也会自动创建默认构造函数。如果我们从不使用这个空类,那么为什么编译器会创建这个默认构造函数?

1 个答案:

答案 0 :(得分:1)

我们可以将它用作类型标记,例如:

server_name ~^(www\.)?(?<domain>.+)(\.dev\.company\.com)$;
root /var/sites/$domain; # i want this to also go to /var/sites/customer.com

另外,请阅读其他语言的用法,以便更深入地了解空类:

Kotlin:http://customer.com.dev.company.com

C#:What is the purpose of empty class in Kotlin?