摘要:
this this 是自身的一个对象,代表对象本身,可以理解为:指向对象本身的一个指针。 this 的用法在 Java 中大体可以分为3种: 1.普通的直接引用 这种就不用讲了,this 相当于是指向当前对象本身。 2.形参与成员名字重名,用 this 来区分: 实例 class Person { 阅读全文
摘要:
Java中到底是传值还是传址? 1:既是传值,也是传地址,基本数据类型传递的值,引用数据类型传递的地址2:java中只有传值,因为地址值也是值(出去面试都说这种,支持者是高司令(java之父)) public class String01 { String str = new String("xh 阅读全文
摘要:
在xml文件中引入properties文件,注入到bean中 xml文件 <beans> <!-- enable processing of annotations such as @Autowired and @Configuration --> <context:annotation-confi 阅读全文