上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: 文档根元素 "beans" 必须匹配 DOCTYPE 根 "null"。 Line 4 in XML document from class path resource [bean2.xml] is invalid 这个是spring 1.0低版本引起的 直接换成4.0解决问题 还解决不了的 找我 阅读全文
posted @ 2018-09-22 06:42 mljqqh 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 你自己创建一个jar包,里面有个不固定参数,需要使用者自己配置参数的时候使用; 代码: 阅读全文
posted @ 2018-09-21 11:28 mljqqh 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 源码: 阅读全文
posted @ 2018-09-18 23:47 mljqqh 阅读(649) 评论(0) 推荐(0) 编辑
摘要: int i1=100; int i2=2; System.out.println(i1+"*"+i2+"="+i1*i2);//100*2=200 System.out.println(i1+"+"+i2+"="+i1+i2);//100+2=1002 System.out.println(i1+" 阅读全文
posted @ 2018-09-18 20:18 mljqqh 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 1. 基本数组: //直接通过Arrays.sort工具类 int[] arr = new int[]{1,2,6,24,5,68,9,0}; Arrays.sort(arr); 2.对象数组: //通过实现Comparable接口来排序 public class student implement 阅读全文
posted @ 2018-09-12 00:18 mljqqh 阅读(2096) 评论(0) 推荐(1) 编辑
摘要: private void button2_Click(object sender, EventArgs e) { comboBox1.DropDownStyle = ComboBoxStyle.DropDownList; comboBox1.Items.Add("云南"); comboBox1.It 阅读全文
posted @ 2017-06-13 22:37 mljqqh 阅读(218) 评论(0) 推荐(0) 编辑
摘要: http://jingyan.baidu.com/article/63f23628e8694a0209ab3d69.html 阅读全文
posted @ 2017-06-09 22:59 mljqqh 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 类型 定义一个var mljqqh:Int=23 阅读全文
posted @ 2017-06-06 22:40 mljqqh 阅读(136) 评论(0) 推荐(0) 编辑
摘要: a.models中随意增加 meta类class School(models.Model): name=models.CharField(max_length=32,unique=True) city=models.CharField(max_length=32) addr=models.CharF 阅读全文
posted @ 2017-05-29 16:43 mljqqh 阅读(548) 评论(0) 推荐(0) 编辑
摘要: def deco(func): def wrapper(): print("1 before myfunc() called.") func() print(" 2 after myfunc() called.") return wrapper@decodef myfun(): print("myf 阅读全文
posted @ 2017-05-28 22:50 mljqqh 阅读(94) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页