摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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... 阅读全文
摘要:
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 阅读全文
摘要:
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 个人... 阅读全文
摘要:
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 阅读全文
摘要:
POJO POJO(Plain Ordinary Java Object)简单的Java对象,实际就是普通JavaBeans,是为了避免和EJB混淆所创造的简称。 使用POJO名称是为了避免和EJB混淆起来, 而且简称比较直接. 其中有一些属性及其getter setter方法的类,没有业务逻辑,有 阅读全文
摘要:
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 阅读全文
摘要:
//鸟类 public class Bird { //属性 成员变量 //颜色 String Color; //重量 double weigt; //行为 方法 //飞 void - 没有返回值 void fly() { System.out.println("我能飞"); } //吃 void e 阅读全文
摘要:
正则表达式 正则表达式,又称正规表示法、常规表示法(英语:Regular Expression,在代码中常简写为regex、regexp或RE),计算机科学的一个概念。正则表达式使用单个字符串来描述、匹配一系列符合某个句法规则的字符串。在很多文本编辑器里,正则表达式通常被用来检索、替换那些符合某个模 阅读全文
|