那消逝的岁月

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2016年5月18日

摘要: 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.andr 阅读全文
posted @ 2016-05-18 10:07 那消逝的岁月 阅读(275) 评论(0) 推荐(0) 编辑

摘要: 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.andr 阅读全文
posted @ 2016-05-18 09:50 那消逝的岁月 阅读(124) 评论(0) 推荐(0) 编辑

2016年5月17日

摘要: 1 2 11 12 16 17 1 2 5 6 11 12 19 20 25 30 31 32 33 34 1 package com.hanqi.testapp2; 2 3 import android.support.v7.app.AppCompatActivi... 阅读全文
posted @ 2016-05-17 23:53 那消逝的岁月 阅读(102) 评论(0) 推荐(0) 编辑

2016年5月13日

摘要: 1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.an 阅读全文
posted @ 2016-05-13 22:56 那消逝的岁月 阅读(165) 评论(0) 推荐(0) 编辑

2016年3月19日

摘要: 1 2 3 4 5 个人简历 6 7 8 9 个人简历 10 11 12 13 姓名 14 15 性别 16 17 出生年月 18 19 照片 20 21 22 23 民族 24 25 政治面貌 26 27 户籍 28 29 30 31 32 学历 33 34 专业 35 36 毕业学校 37 38 39 40 41 个人... 阅读全文
posted @ 2016-03-19 22:02 那消逝的岁月 阅读(1459) 评论(0) 推荐(0) 编辑

2016年3月10日

摘要: public static void main(String[] args) { //冒泡排序 从小到大 int[] a = new int[]{23,45,67,12,97,78,36,8}; System.out.print("原始顺序:"); for(int t : a) { System.o 阅读全文
posted @ 2016-03-10 16:32 那消逝的岁月 阅读(230) 评论(0) 推荐(0) 编辑

2016年3月6日

摘要: POJO POJO(Plain Ordinary Java Object)简单的Java对象,实际就是普通JavaBeans,是为了避免和EJB混淆所创造的简称。 使用POJO名称是为了避免和EJB混淆起来, 而且简称比较直接. 其中有一些属性及其getter setter方法的类,没有业务逻辑,有 阅读全文
posted @ 2016-03-06 21:47 那消逝的岁月 阅读(548) 评论(0) 推荐(0) 编辑

2016年3月4日

摘要: public class juxing { int a; int b; juxing(int a,int b) { System.out.println("矩形面积s=" + (a*b)); } } public class juxing1 { public static void main(Str 阅读全文
posted @ 2016-03-04 22:46 那消逝的岁月 阅读(606) 评论(0) 推荐(0) 编辑

2016年3月3日

摘要: //鸟类 public class Bird { //属性 成员变量 //颜色 String Color; //重量 double weigt; //行为 方法 //飞 void - 没有返回值 void fly() { System.out.println("我能飞"); } //吃 void e 阅读全文
posted @ 2016-03-03 22:14 那消逝的岁月 阅读(105) 评论(0) 推荐(0) 编辑

2016年3月1日

摘要: 正则表达式 正则表达式,又称正规表示法、常规表示法(英语:Regular Expression,在代码中常简写为regex、regexp或RE),计算机科学的一个概念。正则表达式使用单个字符串来描述、匹配一系列符合某个句法规则的字符串。在很多文本编辑器里,正则表达式通常被用来检索、替换那些符合某个模 阅读全文
posted @ 2016-03-01 22:17 那消逝的岁月 阅读(108) 评论(0) 推荐(0) 编辑