常见对象(正则表达式的概述和简单使用)

常见对象(字符类演示)

常见对象(预定义字符类演示)

常见对象(数量词)

常见对象(正则表达式的分割功能)

常见对象(把给定字符串中的数字排序)

常见对象(正则表达式的替换功能)

常见对象(正则表达式的分组功能)

常见对象(Pattern和Matcher的概述)

常见对象(正则表达式的获取功能)

常见对象(Math类概述和方法使用)

常见对象(Random类的概述和方法使用)

常见对象(System类的概述和方法使用)

常见对象(BigInteger类的概述和方法使用)

常见对象(BigDecimal类的概述和方法使用)

常见对象(Date类的概述和方法使用)

 

###14.01_常见对象(正则表达式的概述和简单使用)
 A:正则表达式
     是指一个用来描述或者匹配一系列符合某个语法规则的字符串的单个字符串。其实就是一种规则。有自己特殊的应用。
     作用:比如注册邮箱,邮箱有用户名和密码,一般会对其限制长度,这个限制长度的事情就是正则表达式做的
 B:案例演示
     需求:校验qq号码.
         1:要求必须是5-15位数字
         2:0不能开头
         3:必须都是数字
        
     a:非正则表达式实现
     b:正则表达式实现

public static boolean checkQQ(String qq) {

    boolean flag = true; //如果校验qq不符合要求就把flag置为false,如果符合要求直接返回

    if(qq.length() >= 5 && qq.length() <= 15) {

if(!qq.startsWith("0")) {

    char[] arr = qq.toCharArray(); //将字符串转换成字符数组

    for (int i = 0; i < arr.length; i++) {

char ch = arr[i]; //记录每一个字符

        if(!(ch >= '0' && ch <= '9')) {

flag = false; //不是数字

            break;

}

}

}else {

flag = false; //以0开头,不符合qq标准

}

}else {

flag = false; //长度不符合

}

    return flag;

}

String regex = "[1-9]\\d{4,14}";

System.out.println("2553868".matches(regex)); //true

System.out.println("012345".matches(regex)); //false

System.out.println("2553868abc".matches(regex)); //false

###14.02_常见对象(字符类演示)
 A:字符类
     [abc] a、b 或 c(简单类) 
     [^abc] 任何字符,除了 a、b 或 c(否定) 
     [a-zA-Z] a到 z 或 A到 Z,两头的字母包括在内(范围)

[a-d[m-p]] a 到 d 或 m 到 p:[a-dm-p](并集)

[a-z&&[def]] d、e 或 f(交集)

[a-z&&[^bc]] a 到 z,除了 b 和 c:[ad-z](减去)

[a-z&&[^m-p]] a 到 z,而非 m 到 p:[a-lq-z](减去)
  [0-9] 0到9的字符都包括

String regex = "[abc]"; //[]代表单个字符

System.out.println("a".matches(regex)); //true

System.out.println("10".matches(regex)); //10代表1字符和0字符,不是单个字符

###14.03_常见对象(预定义字符类演示)
 A:预定义字符类
     . 任何字符。 一个点代表一个字符
     \d 数字:[0-9] //\代表转义字符,如果想表示\d的话,需要\\d

\D 非数字: [^0-9]

\s 空白字符:[ \t\n\x0B\f\r]

\S 非空白字符:[^\s]
     \w 单词字符:[a-zA-Z_0-9]

\W 非单词字符:[^\w]

String regex = "..";

System.out.println("a".matches(regex));

System.out.println("ab".matches(regex));

###14.04_常见对象(数量词)
 A:Greedy 数量词 
     X?   X,一次或一次也没有
     X   X,零次或多次
     X+   X,一次或多次
     X{n}    X,恰好 n 次 
     X{n,}   X,至少 n 次 
     X{n,m}  X,至少 n 次,但是不超过 m 次

String regex = "[abc]?"; //针对前面的字符,出现一次或一次也没有

System.out.println("a".matches(regex));

###14.05_常见对象(正则表达式的分割功能)
 A:正则表达式的分割功能
     String类的功能:public String[] split(String regex)
 B:案例演示
     正则表达式的分割功能

String s = "金三胖.郭美美.李dayone";

String[] arr = s.split("\\."); //通过正则表达式切割字符串

    for (int i = 0; i < arr.length; i++) {

System.out.println(arr[i]);

}

###14.06_常见对象(把给定字符串中的数字排序)
 A:案例演示
     需求:我有如下一个字符串:”91 27 46 38 50”,请写代码实现最终输出结果是:”27 38 46 50 91”

import java.util.Arrays;

public class Test1 {

    public static void main(String[] args) {

String s = "91 27 46 38 50";

//1,将字符串切割成字符串数组

String[] sArr = s.split(" ");

//2,将字符串转换成数字并将其存储在一个等长度的int数组中

int[] arr = new int[sArr.length];

for (int i = 0; i < arr.length; i++) {

arr[i] = Integer.parseInt(sArr[i]); //将数字字符串转换成数字

}

//3,排序

Arrays.sort(arr);

//4,将排序后的结果遍历并拼接成一个字符串27 38 46 50 91

/*String str = "";

for (int i = 0; i < arr.length; i++) {

if(i == arr.length - 1) {

str = str + arr[i]; //27 38 46 50 91

}else {

str = str + arr[i] + " "; //27 38 46 50

}

}

System.out.println(str);*/

StringBuilder sb = new StringBuilder();

    for (int i = 0; i < arr.length; i++) {

if(i == arr.length - 1) {

sb.append(arr[i]);

}else {

sb.append(arr[i] + " ");

}

}

System.out.println(sb);

}

}

###14.07_常见对象(正则表达式的替换功能)
 A:正则表达式的替换功能
     String类的功能:public String replaceAll(String regex,String replacement)
 B:案例演示
     正则表达式的替换功能

String s = "wo111ai222heima";

String regex = "\\d"; //\\d代表的是任意数字

String s2 = s.replaceAll(regex, "");

System.out.println(s2); //woaiheima

###14.08_常见对象(正则表达式的分组功能)
 A:正则表达式的分组功能
     捕获组可以通过从左到右计算其开括号来编号。例如,在表达式 ((A)(B(C))) 中,存在四个这样的组: 
 
        1     ((A)(B(C))) 
        2     (A 
        3     (B(C)) 
        4     (C) 
    
        组零始终代表整个表达式。

//叠词 快快乐乐,高高兴兴

String regex = "(.)\\1(.)\\2"; //\\1代表第一组又出现一次 \\2代表第二组又出现一次

System.out.println("快快乐乐".matches(regex)); //true

System.out.println("快乐乐乐".matches(regex)); //false

System.out.println("死啦死啦".matches(regex)); //false

//叠词 死啦死啦,高兴高兴

String regex2 = "(..)\\1"; //让两个任意字符再出现一次

System.out.println("死啦死啦".matches(regex2)); //true

System.out.println("高兴高兴".matches(regex2)); //true

System.out.println("快快乐乐".matches(regex2)); //false

B:案例演示
  a:切割
    需求:请按照叠词切割: "sdqqfgkkkhjppppkl";叠词消失

String s = "sdqqfgkkkhjppppkl";

String regex = "(.)\\1+"; //+代表第一组出现一次到多次

String[] arr = s.split(regex);

    for (int i = 0; i < arr.length; i++) {

System.out.println(arr[i]);

}

b:替换
    需求:我我....我...我.要...要要...要学....学学..学.编..编编.编.程.程.程..程
      将字符串还原成:“我要学编程”。

String s = "我我....我...我.要...要要...要学....学学..学.编..编编.编.程.程.程..程";

String s2 = s.replaceAll("\\.+", ""); //\.代表一点

String s3 = s2.replaceAll("(.)\\1+", "$1"); //$1代表第一组中的内容

System.out.println(s3); //我要学编程

###14.09_常见对象(Pattern和Matcher的概述)
 A:Pattern和Matcher的概述
 B:模式和匹配器的典型调用顺序
     通过JDK提供的API,查看Pattern类的说明

     典型的调用顺序是 
     Pattern p = Pattern.compile("ab");
     Matcher m = p.matcher("aaaaab");
     boolean b = m.matches();

Pattern p = Pattern.compile("a*b"); //获取到正则表达式

Matcher m = p.matcher("aaaaab"); //获取匹配器

    boolean b = m.matches(); //看是否能匹配,匹配就返回true

System.out.println(b); //true

System.out.println("aaaaab".matches("a*b"));   //与上面的结果一样

###14.10_常见对象(正则表达式的获取功能)
 A:正则表达式的获取功能
     Pattern和Matcher的结合使用
 B:案例演示
     需求:把一个字符串中的手机号码获取出来

String s = "我的手机是18988888888,我曾用过18987654321,还用过18812345678";

String regex = "1[3578]\\d{9}";

Pattern p = Pattern.compile(regex);

Matcher m = p.matcher(s);

/*boolean b1 = m.find();

System.out.println(b1);

System.out.println(m.group());

boolean b2 = m.find();

System.out.println(b2);

System.out.println(m.group());*/

    while(m.find())

System.out.println(m.group());

}

18988888888

18987654321

18812345678

练习:

public static void main(String[] args) {

//demo1();

//demo2();

//demo3();

//demo4();

//demo5();

//demo6();

//demo7();

String regex1 = "1[34578]\\d{9}";

String regex2 = "1[34578]\\d{4}(\\d)\\1{4}";

System.out.println("13812300000".matches(regex2));//true

System.out.println("15932166666".matches(regex2));//true

System.out.println("13812345678".matches(regex2));//false

}

    public static void demo7() {

String regex = "(.)\\1+(.)\\2+";

System.out.println("快快乐乐".matches(regex));//true

System.out.println("高高兴兴".matches(regex));//true

System.out.println("快快快乐乐乐".matches(regex));//true

String regex2 = "(..)\\1";

System.out.println("乐呵乐呵".matches(regex2));//true

System.out.println("死啦死啦".matches(regex2));//true

}

    public static void demo6() {

//5,密码. 任意字符, 6-16位

String regex = ".{6,16}";

System.out.println("123456".matches(regex));//true

System.out.println("abcde".matches(regex));//false

System.out.println("1234567890987654".matches(regex));//true

System.out.println("12345678909876543".matches(regex));//false

}

    public static void demo5() {

//4,用户名. 字母数字下划线10位以内, 必须是字母开头

String regex = "[a-zA-Z]\\w{0,9}";

System.out.println("0abcde".matches(regex));//false

System.out.println("a".matches(regex));//true

System.out.println("abcdef12345".matches(regex));//false

}

    public static void demo4() {

//3,Email   fengjia@itcast.cn

//          fengjia@itcast.com.cn

String regex = "[\\w-\\.]+@([\\w-]+\\.)+[a-z]{2,3}";

System.out.println("fengjia@itcast.cn".matches(regex));//true

System.out.println("2553868@qq.com".matches(regex));//true

System.out.println("fengjia@itcast.cn".matches(regex));//true

}

    public static void demo3() {

//2,手机号

String regex = "1[34578]\\d{9}";

System.out.println("13898765432".matches(regex));//true

System.out.println("01234567890".matches(regex));//false

System.out.println("16123456789".matches(regex));//false

System.out.println("159123456780".matches(regex));//false

}

    public static void demo2() {

//1,1-6位字母或数字:

String regex = "[\\d[a-zA-Z]]{1,6}";

System.out.println("123456".matches(regex));//true

System.out.println("1".matches(regex));//true

System.out.println("abcd".matches(regex));//true

}

    public static void demo1() {

//qq号码

String regex = "[1-9]\\d{4,10}"; //\d数字1到9;必须是5-11位数字

System.out.println("2553868".matches(regex));//true

System.out.println("012345".matches(regex));//false

System.out.println("12345678987".matches(regex));//true

}

###14.11_常见对象(Math类概述和方法使用)
 A:Math类概述
     Math 类包含用于执行基本数学运算的方法,如初等指数、对数、平方根和三角函数。 
 B:成员方法
     public static int abs(int a)
     public static double ceil(double a)
     public static double floor(double a)
     public static int max(int a,int b) min自学
     public static double pow(double a,double b)
     public static double random()
     public static int round(float a) 参数为double的自学
     public static double sqrt(double a)

System.out.println(Math.PI); //3.141592653589793

System.out.println(Math.abs(-10));  //10 //取绝对值

//ceil天花板

/*

* 13.0

* 12.3

* 12.0

*/

System.out.println(Math.ceil(12.3)); //向上取整,但是结果是一个double

System.out.println(Math.ceil(12.99)); //13.0

System.out.println("-----------");

//floor地板

/*

* 13.0

* 12.3

* 12.0

*/

System.out.println(Math.floor(12.3)); //向下取整,但是结果是一个double

System.out.println(Math.floor(12.99)); //12.0

//获取两个值中的最大值

System.out.println(Math.max(20, 30)); //30

//前面的数是底数,后面的数是指数

System.out.println(Math.pow(2, 3)); //8.0 //2.0 ^ 3.0

//生成0.0到1.0之间的所以小数,包括0.0,不包括1.0

System.out.println(Math.random()); //0.5786034613269627

//四舍五入

System.out.println(Math.round(12.3f)); //12

System.out.println(Math.round(12.9f)); //13

//开平方

System.out.println(Math.sqrt(4)); //2.0

System.out.println(Math.sqrt(2)); //1.4142135623730951

System.out.println(Math.sqrt(3)); //1.7320508075688772

###14.12_常见对象(Random类的概述和方法使用)
 A:Random类的概述
     此类用于产生随机数如果用相同的种子创建两个 Random 实例,
     则对每个实例进行相同的方法调用序列,它们将生成并返回相同的数字序列。
 B:构造方法
     public Random()
     public Random(long seed)

Random r2 = new Random(50);

    int a = r2.nextInt();

    int b = r2.nextInt();

System.out.println(a); //-1160871061

System.out.println(b); //-1727040520

C:成员方法
     public int nextInt()
     public int nextInt(int n)(重点掌握)生成0到n范围内的随机数,包含0你不包含n

Random r = new Random();

    int x = r.nextInt();

System.out.println(x); //66259482

    for(int i = 0; i < 10; i++) {

//System.out.println(r.nextInt());

System.out.println(r.nextInt(100)); //要求掌握,生成在0到n范围内的随机数,包含0不包含n

}

###14.13_常见对象(System类的概述和方法使用)
 A:System类的概述
     System 类包含一些有用的类字段和方法。它不能被实例化。 
 B:成员方法
     public static void gc()

public static void demo1() {

    for(int i = 0; i < 100; i++) {

new Demo();

System.gc(); //运行垃圾回收器,相当于呼喊保洁阿姨

}

}

class Demo { //在一个源文件中不允许定义两个用public修饰的类

@Override

    public void finalize() {

System.out.println("垃圾被清扫了");

}

}

public static void exit(int status)

public static void demo2() {

System.exit(1); //非0状态是异常终止,退出jvm

System.out.println("11111111111");

}

public static long currentTimeMillis()

    long start = System.currentTimeMillis(); //1秒等于1000毫秒

    for(int i = 0; i < 1000; i++) {

System.out.println("*");

}

    long end = System.currentTimeMillis(); //获取当前时间的毫秒值

System.out.println(end - start); //16

pubiic static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)

    int[] src = {11,22,33,44,55};

    int[] dest = new int[8];

    for (int i = 0; i < dest.length; i++) {

System.out.print(dest[i]); //00000000

}

System.out.print("------------");

System.arraycopy(src, 0, dest, 0, src.length); //将数组内容拷贝

    for (int i = 0; i < dest.length; i++) {

System.out.print(dest[i]); //1122334455000

}

C:案例演示
     System类的成员方法使用

###14.14_常见对象(BigInteger类的概述和方法使用)
 A:BigInteger的概述
     可以让超过Integer范围内的数据进行运算
 B:构造方法
     public BigInteger(String val)
 C:成员方法
     public BigInteger add(BigInteger val)
     public BigInteger subtract(BigInteger val)
     public BigInteger multiply(BigInteger val)
     public BigInteger divide(BigInteger val)
     public BigInteger[] divideAndRemainder(BigInteger val)

//long num = 123456789098765432123L;

//String s = "123456789098765432123";

BigInteger bi1 = new BigInteger("100");

BigInteger bi2 = new BigInteger("2");

System.out.println(bi1.add(bi2)); //+

System.out.println(bi1.subtract(bi2)); //-

System.out.println(bi1.multiply(bi2)); //*

System.out.println(bi1.divide(bi2));     ///(除)

BigInteger[] arr = bi1.divideAndRemainder(bi2); //取除数和余数

    for (int i = 0; i < arr.length; i++) {

System.out.println(arr[i]);  //50 0

}

###14.15_常见对象(BigDecimal类的概述和方法使用)
 A:BigDecimal的概述
     由于在运算的时候,float类型和double很容易丢失精度,演示案例。
     所以,为了能精确的表示、计算浮点数,Java提供了BigDecimal

     不可变的、任意精度的有符号十进制数。
 B:构造方法
     public BigDecimal(String val)
 C:成员方法
     public BigDecimal add(BigDecimal augend)
     public BigDecimal subtract(BigDecimal subtrahend)
     public BigDecimal multiply(BigDecimal multiplicand)
     public BigDecimal divide(BigDecimal divisor)
 D:案例演示
     BigDecimal类的构造方法和成员方法使用

//System.out.println(2.0 - 1.1); //0.8999999999999999

/*BigDecimal bd1 = new BigDecimal(2.0); //这种方式在开发中不推荐,因为不够精确

BigDecimal bd2 = new BigDecimal(1.1);

System.out.println(bd1.subtract(bd2));

//0.899999999999999911182158029987476766109466552734375

BigDecimal bd1 = new BigDecimal("2.0"); //通过构造中传入字符串的方式,开发时推荐

BigDecimal bd2 = new BigDecimal("1.1");

System.out.println(bd1.subtract(bd2)); //0.9

*/

BigDecimal bd1 = BigDecimal.valueOf(2.0); //这种方式在开发中也是推荐的

BigDecimal bd2 = BigDecimal.valueOf(1.1);

System.out.println(bd1.subtract(bd2)); //0.9

###14.16_常见对象(Date类的概述和方法使用)(掌握)
 A:Date类的概述
     类 Date 表示特定的瞬间,精确到毫秒。 
 B:构造方法
     public Date()
     public Date(long date)

Date d1 = new Date(); //如果没有传参数代表的是当前时间

System.out.println(d1); //Tue Sep 05 21:33:01 CST 2017

Date d2 = new Date(0); //如果构造方法中参数传为0代表的是1970年1月1日

System.out.println(d2); //Thu Jan 01 08:00:00 CST 1970 //通过毫秒值创建时间对象

C:成员方法
     public long getTime()
     public void setTime(long time)

Date d1 = new Date();

System.out.println(d1.getTime());//1504618538561 //通过时间对象获取毫秒值

System.out.println(System.currentTimeMillis());//1504618538561 //通过系统类的方法获取当前时间毫秒值

d1.setTime(1000); //1000毫秒=1秒 //设置毫秒值,改变时间对象

System.out.println(d1); //Thu Jan 01 08:00:01 CST 1970

###14.17_常见对象(SimpleDateFormat类实现日期和字符串的相互转换)(掌握)
 A:DateFormat类的概述
     DateFormat 是日期/时间格式化子类的抽象类,它以与语言无关的方式格式化并解析日期或时间。是抽象类,所以使用其子类SimpleDateFormat
 B:SimpleDateFormat构造方法
     public SimpleDateFormat()
     public SimpleDateFormat(String pattern)

//DateFormat df = new DateFormat(); //DateFormat是抽象类,不允许实例化

//DateFormat df1 = new SimpleDateFormat();

DateFormat df1 = DateFormat.getDateInstance(); //相当于父类引用指向子类对象,右边的方法返回一个子类对象

C:成员方法
     public final String format(Date date)
     public Date parse(String source)

Date d = new Date(); //获取当前时间对象

SimpleDateFormat sdf = new SimpleDateFormat(); //创建日期格式化类对象

System.out.println(sdf.format(d));   //17-9-5 下午9:45

Date d = new Date(); //获取当前时间对象

SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//创建日期格式化类对象

System.out.println(sdf.format(d)); //2017/09/05 21:45:33 //将日期对象转换为字符串

//将时间字符串转换成日期对象

String str = "2000年08月08日 08:08:08";

SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");

Date d = sdf.parse(str); //将时间字符串转换成日期对象

System.out.println(d); //Tue Aug 08 08:08:08 CST 2000

###14.18_常见对象(你来到这个世界多少天案例)(掌握)
 A:案例演示
     需求:算一下你来到这个世界多少天?

###14.19_常见对象(Calendar类的概述和获取日期的方法)(掌握)
 A:Calendar类的概述
     Calendar 类是一个抽象类,它为特定瞬间与一组诸如 YEAR、MONTH、DAY_OF_MONTH、HOUR 等日历字段之间的转换提供了一些方法,并为操作日历字段(例如获得下星期的日期)提供了一些方法。
 B:成员方法
     public static Calendar getInstance()
     public int get(int field)

Calendar c = Calendar.getInstance(); //父类引用指向子类对象

//System.out.println(c); //证明重写了toString方法打印了对象中所有的属性

System.out.println(c.get(Calendar.YEAR)); //2017 //通过字段获取对应的值

System.out.println(c.get(Calendar.MONTH)); //8

###14.20_常见对象(Calendar类的add()和set()方法)(掌握)
 A:成员方法
     public void add(int field,int amount)
     public final void set(int year,int month,int date)
 B:案例演示
     Calendar类的成员方法使用

import java.util.Calendar;

public class Demo9_Calendar {

    public static void main(String[] args) {

demo1();

Calendar c = Calendar.getInstance(); //父类引用指向子类对象

//c.add(Calendar.MONTH, -1); //对指定的字段进行向前减或向后加

//c.set(Calendar.YEAR, 2000); //修改指定字段

c.set(2000, 7, 8);

System.out.println(c.get(Calendar.YEAR) + "年" + getNum((c.get(Calendar.MONTH)+1))

+ "月" + getNum(c.get(Calendar.DAY_OF_MONTH)) + "日" + getWeek(c.get(Calendar.DAY_OF_WEEK)));

//2000年08月08日星期二

}

    public static void demo1() {

Calendar c = Calendar.getInstance(); //父类引用指向子类对象

//System.out.println(c);

System.out.println(c.get(Calendar.YEAR));//2017 //通过字段获取年

System.out.println(c.get(Calendar.MONTH));//8 //通过字段后期月,但是月是从0开始编号的

System.out.println(c.get(Calendar.DAY_OF_MONTH));//5 //月中的第几天

System.out.println(c.get(Calendar.DAY_OF_WEEK));//3 //周日是第一天,周六是最后一天

System.out.println(c.get(Calendar.YEAR) + "年" + getNum((c.get(Calendar.MONTH)+1))

+ "月" + getNum(c.get(Calendar.DAY_OF_MONTH))+ 日" + etWeek(c.get(Calendar.DAY_OF_WEEK)));

//2017年09月05日星期二

}

/*

* 将星期存储表中进行查表

* 1,返回值类型String

* 2,参数列表int week

*/

    public static String getWeek(int week) {

String[] arr = {"","星期日","星期一","星期二","星期三","星期四","星期五","星期六"};

return arr[week];

}

/*

* 如果是个数数字前面补0

* 1,返回值类型String类型

* 2,参数列表,int num

*/

    public static String getNum(int num) {

/*if(num > 9) {

return "" + num;

}else {

return "0" + num;

}*/

       return num > 9 ? "" + num : "0" + num;

}

}

###14.21_常见对象(如何获取任意年份是平年还是闰年)(掌握)
 A:案例演示
     需求:键盘录入任意一个年份,判断该年是闰年还是平年

###14.22_day14总结
 把今天的知识点总结一遍。

day14<常见对象+>的更多相关文章

  1. day12<常见对象+>

    常见对象(Scanner的概述和方法介绍) 常见对象(Scanner获取数据出现的小问题及解决方案) 常见对象(String类的概述) 常见对象(String类的构造方法) 常见对象(String类的 ...

  2. 【JAVA零基础入门系列】Day14 Java对象的克隆

    今天要介绍一个概念,对象的克隆.本篇有一定难度,请先做好心理准备.看不懂的话可以多看两遍,还是不懂的话,可以在下方留言,我会看情况进行修改和补充. 克隆,自然就是将对象重新复制一份,那为什么要用克隆呢 ...

  3. 阶段01Java基础day13常见对象02

    13.01_常见对象(StringBuffer类的概述) A:StringBuffer类概述 通过JDK提供的API,查看StringBuffer类的说明 线程安全的可变字符序列 B:简述安全问题 线 ...

  4. day13<常见对象+>

    常见对象(StringBuffer类的概述) 常见对象(StringBuffer类的构造方法) 常见对象(StringBuffer的添加功能) 常见对象(StringBuffer的删除功能) 常见对象 ...

  5. day11<Java开发工具&常见对象>

    Java开发工具(常见开发工具介绍) Java开发工具(Eclipse中HelloWorld案例以及汉化) Java开发工具(Eclipse的视窗和视图概述) Java开发工具(Eclipse工作空间 ...

  6. JavaScript 入门之常见对象

    常见对象 1. Object 对象 2. String 对象 3. Array 对象 4. Date 对象 5. Number 对象 6. 自定义对象 with 语句 为了简化对象调用内容的书写 格式 ...

  7. Java常见对象Object类中的个别方法

    Java常见对象Object类 public int hashCode() : 返回该对象的哈希码值. 注意:哈希值是根据哈希算法计算出来的一个值,这个值和地址值有关,但是不是实际地址值.你可以理解成 ...

  8. VB - FSO的常见对象和方法

    1. set fs=wscript.createobject(“scripting.filesystemobject”) 这样就建立了fso的模型.如果要释放的话也很简单, set fs=nothin ...

  9. 一文读懂Redis常见对象类型的底层数据结构

    Redis是一个基于内存中的数据结构存储系统,可以用作数据库.缓存和消息中间件.Redis支持五种常见对象类型:字符串(String).哈希(Hash).列表(List).集合(Set)以及有序集合( ...

随机推荐

  1. 转每天一个linux命令(2):cd命令

      Linux cd 命令可以说是Linux中最基本的命令语句,其他的命令语句要进行操作,都是建立在使用 cd 命令上的. 所以,学习Linux 常用命令,首先就要学好 cd 命令的使用方法技巧. 1 ...

  2. GBK和UTF8的区别

    GBK的文字编码是双字节来表示的,即不论中.英文字符均使用双字节来表示,只不过为区分中文,将其最高位都定成1. UTF-8编码则是用以解决国际上字符的一种多字节编码,它对英文使用8位(即一个字节),中 ...

  3. Struts配置的各种视图转发类型

    上面是struts1的视图转发2中类型:1.内部请求转发(来定向到某个视图):2.浏览器重定向(来定向到某个视图). 浏览器重定向(直接访问路径)不能访问WEB-INF的jsp文件,只有服务器内部转发 ...

  4. JavaScript笔记之第六天

    JavaScript 库 JavaScript 库 - jQuery.Prototype.MooTools. jQuery jQuery 是目前最受欢迎的 JavaScript 框架. 它使用 CSS ...

  5. Java集合框架学习(一)List

    先附一张Java集合框架图. 从上面的集合框架图可以看到,Java集合框架主要包括两种类型的容器,一种是集合(Collection),存储一个元素集合,另一种是图(Map),存储键/值对映射.Coll ...

  6. 本地配置DNS服务器(MAC版)

    作为一个前端开发者,会遇到使用cookie的情况,常见的如:登录,权限控制,视频播放,图形验证码等,这时候本地开发者在PC上会使用修改hosts的方式添加指向本地的域名,来获取cookie的同域名.如 ...

  7. 实现CA证书创建及客户端申请证书

    author:JevonWei 版权声明:原创作品 CA证书的相关文件路径 openssl配置文件/etc/pki/tls/openssl.cnf /etc/pki/tls/openssl.cnf C ...

  8. C# 实现AOP 的几种常见方式

    AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的中统一处理业务逻辑的一种技术,比较常见的场景是:日志记录,错误捕获 ...

  9. jsp fmt标签详解

    详见:http://blog.yemou.net/article/query/info/tytfjhfascvhzxcyt326 JSTL标签提供了对国际化(I18N)的支持,它可以根据发出请求的客户 ...

  10. spring cloud+docker 简单说一说

    spring boot 微服务开发工具 spring cloud 微服务框架治理工具集 这么做: 1.搭建spring cloud 基础组件(服务发现,服务注册,服务配置,监控,追踪,API网关) 以 ...