说明:如果我们使用过SpringBoot,那么就会对下面的图案不陌生。Springboot 启动的同时会打印下面的图案,并带有版本号。
查看SpringBoot官方文档可以找到关于 banner 的描述
The banner that is printed on start up can be changed by adding a banner.txt file to your classpath or by setting the spring.banner.location property <weixin_38545768> 上传 | 大小:140kb
说明:一:Java重载详解
同一个类中有多个方法名相同但参数列表不同的方法,这种现象称为方法重载。
其中参数列表不同包括以下情形:
参数的个数不同
public class Computer
{
public int add(int a, int b)
{
return a + b;
}
public int add(int a, int b, int c)
{
return a + b + c;
}
}
参数的对应类型不同
public class Computer
{
pu <weixin_38665944> 上传 | 大小:34kb