摘要: 1.多态对静态方法不管用,静态方法调用取决于调用者2.super.getClass() //当前类 getClass().getSuperClass() //父类3.子类的构造过程中,必须 调用其父类的构造方法如果子类的构造方法中没有显示的调用基类构造方法,则系统默认调用基类无参数的构造方法4 static方法 仅能调用其他的 static 方法只能访问 static 变量.不能以任何方式引用 ... 阅读全文
posted @ 2017-09-06 17:29 anjunact 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 天津 杭州 成都 武汉 南京 重庆 西安 苏州 合肥 阅读全文
posted @ 2017-09-04 20:16 anjunact 阅读(96) 评论(0) 推荐(0) 编辑
摘要: https://hub.docker.com/r/wnameless/oracle-xe-11g/docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true wnameless/oracle-xe-11g 阅读全文
posted @ 2017-09-04 11:58 anjunact 阅读(159) 评论(0) 推荐(0) 编辑
摘要: https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/ 阅读全文
posted @ 2017-09-01 09:16 anjunact 阅读(102) 评论(0) 推荐(0) 编辑
摘要: methods 来替代 computed,效果上两个都是一样的,但是 computed 是基于它的依赖缓存,只有相关依赖发生改变时才会重新取值。而使用 methods ,在重新渲染的时候,函数总会重新调用执行 v-bind 缩写 : v-on @ 阅读全文
posted @ 2017-08-09 16:25 anjunact 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 对unicode码再进行解码,解码函数如下: 阅读全文
posted @ 2017-06-21 15:18 anjunact 阅读(294) 评论(0) 推荐(0) 编辑
摘要: class ListMetaclass(type): def __new__(cls, name, bases, attrs): attrs['add'] = lambda self, value: self.append(value) return type.__new__(cls, name, 阅读全文
posted @ 2017-05-10 16:46 anjunact 阅读(202) 评论(0) 推荐(0) 编辑
摘要: svnadmin create /path/to/repos/project sudo apt install subversion apache2 libapache2-svn sudo chown -R www-data:www-data /path/to/repossudo htpasswd 阅读全文
posted @ 2017-05-10 14:51 anjunact 阅读(107) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 import matplotlib.pyplot as plt#mpl.rcParams['font.sans-serif'] = ['Microsoft YaHei'] plt.rcParams['font.sans-serif']=['SimHei'] #用来正常显示 阅读全文
posted @ 2017-05-09 11:00 anjunact 阅读(102) 评论(0) 推荐(0) 编辑
摘要: //header.html Title is {{.Title}} {{template "footer" .Body }} //footer.html {{define "footer"}}Body is {{.}}{{end}} //test.go package main import ( " 阅读全文
posted @ 2017-04-25 17:41 anjunact 阅读(1149) 评论(0) 推荐(0) 编辑