# 代码案例:
~~~
package com.msb2;
public class Test {
public static void main(String[] args) {
new Person(); //构造器
}
}
~~~
# 在类中 显示构造器方法使用:
```
public Person() //Person必须与类名相同
{
}
```
![](https://img.kancloud.cn/be/90/be9032c00415b6eb39e55a5a37311146_1994x1389.png)
## 一般就是写一个空构造器,不要写任何东西