===========================================================================package cn.itcast_02;
===========================================================================package cn.itcast_03;
String result = s.substring(0,1).toUpperCase().concat(s.substring(1).toLowerCase());
===========================================================================package cn.itcast_06;
int len2 = anotherString.value.length;//s2.value.length -- s2.toCharArray().length--3
* 在字符串"woaijavawozhenaijavawozhendeaijavawozhendehenaijavaxinbuxinwoaijavagun"
String maxString = "woaijavawozhenaijavawozhendeaijavawozhendehenaijavaxinbuxinwoaijavagun";
package cn.itcast_01;
/*
* 數組排序之冒泡排序:
* 相鄰元素兩兩比較,大的日後放,第一次完畢,最大值出如今了最大索引處
*/
public class ArrayDemo {
public static void main(String[] args) {
// 定義一個數組
int[] arr = { 24, 69, 80, 57, 13 };
System.out.println("排序前:");
printArray(arr);
/*
// 第一次比較
// arr.length - 1是爲了防止數據越界
// arr.length - 1 - 0是爲了減小比較的次數
for (int x = 0; x < arr.length - 1 - 0; x++) {
if (arr[x] > arr[x + 1]) {
int temp = arr[x];
arr[x] = arr[x + 1];
arr[x + 1] = temp;
}
}
System.out.println("第一次比較後:");
printArray(arr);
// 第二次比較
// arr.length - 1是爲了防止數據越界
// arr.length - 1 - 1是爲了減小比較的次數
for (int x = 0; x < arr.length - 1 - 1; x++) {
if (arr[x] > arr[x + 1]) {
int temp = arr[x];
arr[x] = arr[x + 1];
arr[x + 1] = temp;
}
}
System.out.println("第二次比較後:");
printArray(arr);
// 第三次比較
// arr.length - 1是爲了防止數據越界
// arr.length - 1 - 2是爲了減小比較的次數
for (int x = 0; x < arr.length - 1 - 2; x++) {
if (arr[x] > arr[x + 1]) {
int temp = arr[x];
arr[x] = arr[x + 1];
arr[x + 1] = temp;
}
}
System.out.println("第三次比較後:");
printArray(arr);
// 第四次比較
// arr.length - 1是爲了防止數據越界
// arr.length - 1 - 3是爲了減小比較的次數
for (int x = 0; x < arr.length - 1 - 3; x++) {
if (arr[x] > arr[x + 1]) {
int temp = arr[x];
arr[x] = arr[x + 1];
arr[x + 1] = temp;
}
}
System.out.println("第四次比較後:");
printArray(arr);
*/
// 既然聽懂了,那麼上面的代碼就是排序代碼
// 而上面的代碼重複度過高了,因此用循環改進
// for (int y = 0; y < 4; y++) {
// for (int x = 0; x < arr.length - 1 - y; x++) {
// if (arr[x] > arr[x + 1]) {
// int temp = arr[x];
// arr[x] = arr[x + 1];
// arr[x + 1] = temp;
// }
// }
// }
/*
// 因爲咱們知道比較的次數是數組長度-1次,因此改進最終版程序
for (int x = 0; x < arr.length - 1; x++) {
for (int y = 0; y < arr.length - 1 - x; y++) {
if (arr[y] > arr[y + 1]) {
int temp = arr[y];
arr[y] = arr[y + 1];
arr[y + 1] = temp;
}
}
}
System.out.println("排序後:");
printArray(arr);
*/
//因爲我可能有多個數組要排序,因此我要寫成方法
bubbleSort(arr);
System.out.println("排序後:");
printArray(arr);
}
//冒泡排序代碼
public static void bubbleSort(int[] arr){
for (int x = 0; x < arr.length - 1; x++) {
for (int y = 0; y < arr.length - 1 - x; y++) {
if (arr[y] > arr[y + 1]) {
int temp = arr[y];
arr[y] = arr[y + 1];
arr[y + 1] = temp;
}
}
}
}
// 遍歷功能
public static void printArray(int[] arr) {
System.out.print("[");
for (int x = 0; x < arr.length; x++) {
if (x == arr.length - 1) {
System.out.print(arr[x]);
} else {
System.out.print(arr[x] + ", ");
}
}
System.out.println("]");
}
}
========================================================
package cn.itcast_02;
/*
* 數組排序之選擇排序:
* 從0索引開始,依次和後面元素比較,小的往前放,第一次完畢,最小值出如今了最小索引處
*/
public class ArrayDemo {
public static void main(String[] args) {
// 定義一個數組
int[] arr = { 24, 69, 80, 57, 13 };
System.out.println("排序前:");
printArray(arr);
/*
// 第一次
int x = 0;
for (int y = x + 1; y < arr.length; y++) {
if (arr[y] < arr[x]) {
int temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
}
}
System.out.println("第一次比較後:");
printArray(arr);
// 第二次
x = 1;
for (int y = x + 1; y < arr.length; y++) {
if (arr[y] < arr[x]) {
int temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
}
}
System.out.println("第二次比較後:");
printArray(arr);
// 第三次
x = 2;
for (int y = x + 1; y < arr.length; y++) {
if (arr[y] < arr[x]) {
int temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
}
}
System.out.println("第三次比較後:");
printArray(arr);
// 第四次
x = 3;
for (int y = x + 1; y < arr.length; y++) {
if (arr[y] < arr[x]) {
int temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
}
}
System.out.println("第四次比較後:");
printArray(arr);
*/
/*
//經過觀察發現代碼的重複度過高,因此用循環改進
for(int x=0; x<arr.length-1; x++){
for(int y=x+1; y<arr.length; y++){
if(arr[y] <arr[x]){
int temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
}
}
}
System.out.println("排序後:");
printArray(arr);
*/
//用方法改進
selectSort(arr);
System.out.println("排序後:");
printArray(arr);
}
public static void selectSort(int[] arr){
for(int x=0; x<arr.length-1; x++){
for(int y=x+1; y<arr.length; y++){
if(arr[y] <arr[x]){
int temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
}
}
}
}
// 遍歷功能
public static void printArray(int[] arr) {
System.out.print("[");
for (int x = 0; x < arr.length; x++) {
if (x == arr.length - 1) {
System.out.print(arr[x]);
} else {
System.out.print(arr[x] + ", ");
}
}
System.out.println("]");
}
}
===========================================================
package cn.itcast_03;
/*
* 把字符串中的字符進行排序。
* 舉例:"dacgebf"
* 結果:"abcdefg"
*
* 分析:
* A:定義一個字符串
* B:把字符串轉換爲字符數組toCharArray()
* C:把字符數組進行排序
* D:把排序後的字符數組轉成字符串valueOf(chs)
* E:輸出最後的字符串
*/
public class ArrayTest {
public static void main(String[] args) {
// 定義一個字符串
String s = "dacgebf";
// 把字符串轉換爲字符數組
char[] chs = s.toCharArray();
// 把字符數組進行排序
bubbleSort(chs);
//把排序後的字符數組轉成字符串
String result = String.valueOf(chs);
//輸出最後的字符串
System.out.println("result:"+result);
}
// 冒泡排序
public static void bubbleSort(char[] chs) {
for (int x = 0; x < chs.length - 1; x++) {
for (int y = 0; y < chs.length - 1 - x; y++) {
if (chs[y] > chs[y + 1]) {
char temp = chs[y];
chs[y] = chs[y + 1];
chs[y + 1] = temp;
}
}
}
}
}
=============================================
package cn.itcast_04;
/*
* 查找:
* 基本查找:數組元素無序(從頭找到尾)
* 二分查找(折半查找):數組元素有序
*
* 分析:
* A:定義最大索引,最小索引
* B:計算出中間索引
* C:拿中間索引的值和要查找的值進行比較
* 相等:就返回當前的中間索引
* 不相等:
* 大 左邊找
* 小 右邊找
* D:從新計算出中間索引
* 大 左邊找
* max = mid - 1;
* 小 右邊找
* min = mid + 1;
* E:回到B
*/
public class ArrayDemo {
public static void main(String[] args) {
//定義一個數組
int[] arr = {11,22,33,44,55,66,77};
//寫功能實現
int index = getIndex(arr, 33);
System.out.println("index:"+index);
//假如這個元素不存在後有什麼現象呢?
index = getIndex(arr, 333);
System.out.println("index:"+index);
}
/*
* 兩個明確:
* 返回值類型:int
* 參數列表:int[] arr,int value
*/
public static int getIndex(int[] arr,int value){
//定義最大索引,最小索引
int max = arr.length -1;
int min = 0;
//計算出中間索引
int mid = (max +min)/2;
//拿中間索引的值和要查找的值進行比較
while(arr[mid] != value){
if(arr[mid]>value){
max = mid - 1;
}else if(arr[mid]<value){
min = mid + 1;
}
//加入判斷
if(min > max){
return -1;
}
mid = (max +min)/2;
}
return mid;
}
}
===========================================================================package cn.itcast_04;
/*
* 注意:下面這種作法是有問題的。
* 由於數組自己是無序的,因此這種狀況下的查找不能使用二分查找。
* 因此你先排序了,可是你排序的時候已經改變了我最原始的元素索引。
*/
public class ArrayDemo2 {
public static void main(String[] args) {
// 定義數組
int[] arr = { 24, 69, 80, 57, 13 };
// 先排序
bubbleSort(arr);
// 後查找
int index = getIndex(arr, 80);
System.out.println("index:" + index);
}
// 冒泡排序代碼
public static void bubbleSort(int[] arr) {
for (int x = 0; x < arr.length - 1; x++) {
for (int y = 0; y < arr.length - 1 - x; y++) {
if (arr[y] > arr[y + 1]) {
int temp = arr[y];
arr[y] = arr[y + 1];
arr[y + 1] = temp;
}
}
}
}
// 二分查找
public static int getIndex(int[] arr, int value) {
// 定義最大索引,最小索引
int max = arr.length - 1;
int min = 0;
// 計算出中間索引
int mid = (max + min) / 2;
// 拿中間索引的值和要查找的值進行比較
while (arr[mid] != value) {
if (arr[mid] > value) {
max = mid - 1;
} else if (arr[mid] < value) {
min = mid + 1;
}
// 加入判斷
if (min > max) {
return -1;
}
mid = (max + min) / 2;
}
return mid;
}
}
========================================================
package cn.itcast_05;
import java.util.Arrays;
/*
* Arrays:針對數組進行操做的工具類。好比說排序和查找。
* 1:public static String toString(int[] a) 把數組轉成字符串
* 2:public static void sort(int[] a) 對數組進行排序
* 3:public static int binarySearch(int[] a,int key) 二分查找
*/
public class ArraysDemo {
public static void main(String[] args) {
// 定義一個數組
int[] arr = { 24, 69, 80, 57, 13 };
// public static String toString(int[] a) 把數組轉成字符串
System.out.println("排序前:" + Arrays.toString(arr));
// public static void sort(int[] a) 對數組進行排序
Arrays.sort(arr);
System.out.println("排序後:" + Arrays.toString(arr));
// [13, 24, 57, 69, 80]
// public static int binarySearch(int[] a,int key) 二分查找
System.out.println("binarySearch:" + Arrays.binarySearch(arr, 57));
System.out.println("binarySearch:" + Arrays.binarySearch(arr, 577));
}
}
======================================================================
public static String toString(int[] a)
public static void sort(int[] a) 底層是快速排序,知道就能夠了。有空看,有問題再問我
public static int binarySearch(int[] a,int key)
開發原則:
只要是對象,咱們就要判斷該對象是否爲null。
int[] arr = { 24, 69, 80, 57, 13 };
System.out.println("排序前:" + Arrays.toString(arr));
public static String toString(int[] a) {
//a -- arr -- { 24, 69, 80, 57, 13 }
if (a == null)
return "null"; //說明數組對象不存在
int iMax = a.length - 1; //iMax=4;
if (iMax == -1)
return "[]"; //說明數組存在,可是沒有元素。
StringBuilder b = new StringBuilder();
b.append('['); //"["
for (int i = 0; ; i++) {
b.append(a[i]); //"[24, 69, 80, 57, 13"
if (i == iMax)
//"[24, 69, 80, 57, 13]"
return b.append(']').toString();
b.append(", "); //"[24, 69, 80, 57, "
}
}
-----------------------------------------------------
int[] arr = {13, 24, 57, 69, 80};
System.out.println("binarySearch:" + Arrays.binarySearch(arr, 577));
public static int binarySearch(int[] a, int key) {
//a -- arr -- {13, 24, 57, 69, 80}
//key -- 577
return binarySearch0(a, 0, a.length, key);
}
private static int binarySearch0(int[] a, int fromIndex, int toIndex,
int key) {
//a -- arr -- {13, 24, 57, 69, 80}
//fromIndex -- 0
//toIndex -- 5
//key -- 577
int low = fromIndex; //low=0
int high = toIndex - 1; //high=4
while (low <= high) {
int mid = (low + high) >>> 1; //mid=2,mid=3,mid=4
int midVal = a[mid]; //midVal=57,midVal=69,midVal=80
if (midVal < key)
low = mid + 1; //low=3,low=4,low=5
else if (midVal > key)
high = mid - 1;
else
return mid; // key found
}
return -(low + 1); // key not found.
}
=================================================================
package cn.itcast_01;
/*
* Character 類在對象中包裝一個基本類型 char 的值
* 此外,該類提供了幾種方法,以肯定字符的類別(小寫字母,數字,等等),並將字符從大寫轉換成小寫,反之亦然
*
* 構造方法:
* Character(char value)
*/
public class CharacterDemo {
public static void main(String[] args) {
// 建立對象
// Character ch = new Character((char) 97);
Character ch = new Character('a');
System.out.println("ch:" + ch);
}
}
========================================================================
package cn.itcast_02;
/*
* public static boolean isUpperCase(char ch):判斷給定的字符是不是大寫字符
* public static boolean isLowerCase(char ch):判斷給定的字符是不是小寫字符
* public static boolean isDigit(char ch):判斷給定的字符是不是數字字符
* public static char toUpperCase(char ch):把給定的字符轉換爲大寫字符
* public static char toLowerCase(char ch):把給定的字符轉換爲小寫字符
*/
public class CharacterDemo {
public static void main(Stri ng[] args) {
// public static boolean isUpperCase(char ch):判斷給定的字符是不是大寫字符
System.out.println("isUpperCase:" + Character.isUpperCase('A'));
System.out.println("isUpperCase:" + Character.isUpperCase('a'));
System.out.println("isUpperCase:" + Character.isUpperCase('0'));
System.out.println("-----------------------------------------");
// public static boolean isLowerCase(char ch):判斷給定的字符是不是小寫字符
System.out.println("isLowerCase:" + Character.isLowerCase('A'));
System.out.println("isLowerCase:" + Character.isLowerCase('a'));
System.out.println("isLowerCase:" + Character.isLowerCase('0'));
System.out.println("-----------------------------------------");
// public static boolean isDigit(char ch):判斷給定的字符是不是數字字符
System.out.println("isDigit:" + Character.isDigit('A'));
System.out.println("isDigit:" + Character.isDigit('a'));
System.out.println("isDigit:" + Character.isDigit('0'));
System.out.println("-----------------------------------------");
// public static char toUpperCase(char ch):把給定的字符轉換爲大寫字符
System.out.println("toUpperCase:" + Character.toUpperCase('A'));
System.out.println("toUpperCase:" + Character.toUpperCase('a'));
System.out.println("-----------------------------------------");
// public static char toLowerCase(char ch):把給定的字符轉換爲小寫字符
System.out.println("toLowerCase:" + Character.toLowerCase('A'));
System.out.println("toLowerCase:" + Character.toLowerCase('a'));
}
}
===========================================================================
package cn.itcast_03;
import java.util.Scanner;
/*
* 統計一個字符串中大寫字母字符,小寫字母字符,數字字符出現的次數。(不考慮其餘字符)
*
* 分析:
* A:定義三個統計變量。
* int bigCont=0;
* int smalCount=0;
* int numberCount=0;
* B:鍵盤錄入一個字符串。
* C:把字符串轉換爲字符數組。
* D:遍歷字符數組獲取到每個字符
* E:判斷該字符是
* 大寫 bigCount++;
* 小寫 smalCount++;
* 數字 numberCount++;
* F:輸出結果便可
*/
public class CharacterTest {
public static void main(String[] args) {
// 定義三個統計變量。
int bigCount = 0;
int smallCount = 0;
int numberCount = 0;
// 鍵盤錄入一個字符串。
Scanner sc = new Scanner(System.in);
System.out.println("請輸入一個字符串:");
String line = sc.nextLine();
// 把字符串轉換爲字符數組。
char[] chs = line.toCharArray();
// 歷字符數組獲取到每個字符
for (int x = 0; x < chs.length; x++) {
char ch = chs[x];
// 判斷該字符
if (Character.isUpperCase(ch)) {
bigCount++;
} else if (Character.isLowerCase(ch)) {
smallCount++;
} else if (Character.isDigit(ch)) {
numberCount++;
}
}
// 輸出結果便可
System.out.println("大寫字母:" + bigCount + "個");
System.out.println("小寫字母:" + smallCount + "個");
System.out.println("數字字符:" + numberCount + "個");
}
}
================================================================
package cn.itcast_01;
/
public class IntegerDemo {
public static void main(String[] args) {
// 不麻煩的就來了
// public static String toBinaryString(int i)
System.out.println(Integer.toBinaryString(100));
// public static String toOctalString(int i)
System.out.println(Integer.toOctalString(100));
// public static String toHexString(int i)
System.out.println(Integer.toHexString(100));
// public static final int MAX_VALUE
System.out.println(Integer.MAX_VALUE);
// public static final int MIN_VALUE
System.out.println(Integer.MIN_VALUE);
}
}
1100100
144
64
2147483647
-2147483648
========================================================================
package cn.itcast_02;
/*
* Integer的構造方法:
* public Integer(int value)
* public Integer(String s)
* 注意:這個字符串必須是由數字字符組成
*/
public class IntegerDemo {
public static void main(String[] args) {
// 方式1
int i = 100;
Integer ii = new Integer(i);
System.out.println("ii:" + ii);
// 方式2
String s = "100";
// NumberFormatException
// String s = "abc";
Integer iii = new Integer(s);
System.out.println("iii:" + iii);
}
}
===========================================================================s1:100
s2:100
s3:100
s4:100
-----------------
x:100
y:100
==========================================
package cn.itcast_04;
/*
* 經常使用的基本進制轉換
* public static String toBinaryString(int i)
* public static String toOctalString(int i)
* public static String toHexString(int i)
*
* 十進制到其餘進制
* public static String toString(int i,int radix)
* 由這個咱們也看到了進制的範圍:2-36
* 爲何呢?0,...9,a...z
*
* 其餘進制到十進制
* public static int parseInt(String s,int radix)
*/
public class IntegerDemo {
public static void main(String[] args) {
// 十進制到二進制,八進制,十六進制
System.out.println(Integer.toBinaryString(100));
System.out.println(Integer.toOctalString(100));
System.out.println(Integer.toHexString(100));
System.out.println("-------------------------");
// 十進制到其餘進制
System.out.println(Integer.toString(100, 10));
System.out.println(Integer.toString(100, 2));
System.out.println(Integer.toString(100, 8));
System.out.println(Integer.toString(100, 16));
System.out.println(Integer.toString(100, 5));
System.out.println(Integer.toString(100, 7));
System.out.println(Integer.toString(100, -7));
System.out.println(Integer.toString(100, 70));
System.out.println(Integer.toString(100, 1));
System.out.println(Integer.toString(100, 17));
System.out.println(Integer.toString(100, 32));
System.out.println(Integer.toString(100, 37));
System.out.println(Integer.toString(100, 36));
System.out.println("-------------------------");
//其餘進制到十進制
System.out.println(Integer.parseInt("100", 10));
System.out.println(Integer.parseInt("100", 2));
System.out.println(Integer.parseInt("100", 8));
System.out.println(Integer.parseInt("100", 16));
System.out.println(Integer.parseInt("100", 23));
//NumberFormatException
//System.out.println(Integer.parseInt("123", 2));
}
}
=======================================================================
package cn.itcast_05;
/*
* JDK5的新特性
* 自動裝箱:把基本類型轉換爲包裝類類型
* 自動拆箱:把包裝類類型轉換爲基本類型
*
* 注意一個小問題:
* 在使用時,Integer x = null;代碼就會出現NullPointerException。
* 建議先判斷是否爲null,而後再使用。
*/
public class IntegerDemo {
public static void main(String[] args) {
// 定義了一個int類型的包裝類類型變量i
// Integer i = new Integer(100);
Integer ii = 100;
ii += 200;
System.out.println("ii:" + ii);
// 經過反編譯後的代碼
// Integer ii = Integer.valueOf(100); //自動裝箱
// ii = Integer.valueOf(ii.intValue() + 200); //自動拆箱,再自動裝箱
// System.out.println((new StringBuilder("ii:")).append(ii).toString());
Integer iii = null;
// NullPointerException
if (iii != null) {
iii += 1000;
System.out.println(iii);
}
}
}
===========================================================================package cn.itcast_06;
/*
* 看程序寫結果
*
* 注意:Integer的數據直接賦值,若是在-128到127之間,會直接從緩衝池裏獲取數據
*/
public class IntegerDemo {
public static void main(String[] args) {
Integer i1 = new Integer(127);
Integer i2 = new Integer(127);
System.out.println(i1 == i2);
System.out.println(i1.equals(i2));
System.out.println("-----------");
Integer i3 = new Integer(128);
Integer i4 = new Integer(128);
System.out.println(i3 == i4);
System.out.println(i3.equals(i4));
System.out.println("-----------");
Integer i5 = 128;
Integer i6 = 128;
System.out.println(i5 == i6);
System.out.println(i5.equals(i6));
System.out.println("-----------");
Integer i7 = 127;
Integer i8 = 127;
System.out.println(i7 == i8);
System.out.println(i7.equals(i8));
// 經過查看源碼,咱們就知道了,針對-128到127之間的數據,作了一個數據緩衝池,若是數據是該範圍內的,每次並不建立新的空間
// Integer ii = Integer.valueOf(127);
}
}
false
true
-----------
false
true
-----------
false
true
-----------
true
true
========================================================================
package cn.itcast_01;
System.out.println("--------------------------");
// public StringBuffer(int capacity):指定容量的字符串緩衝區對象
StringBuffer sb2 = new StringBuffer(50);
System.out.println("sb2:" + sb2);
System.out.println("sb2.capacity():" + sb2.capacity());
System.out.println("sb2.length():" + sb2.length());
System.out.println("--------------------------");
// public StringBuffer(String str):指定字符串內容的字符串緩衝區對象
StringBuffer sb3 = new StringBuffer("hello");
System.out.println("sb3:" + sb3);
System.out.println("sb3.capacity():" + sb3.capacity());
System.out.println("sb3.length():" + sb3.length());
}
}
=======================================
package cn.itcast_02;
/*
* StringBuffer的添加功能:
* public StringBuffer append(String str):能夠把任意類型數據添加到字符串緩衝區裏面,並返回字符串緩衝區自己
*
* public StringBuffer insert(int offset,String str):在指定位置把任意類型的數據插入到字符串緩衝區裏面,並返回字符串緩衝區自己
*/
public class StringBufferDemo {
public static void main(String[] args) {
// 建立字符串緩衝區對象
StringBuffer sb = new StringBuffer();
// public StringBuffer append(String str)
// StringBuffer sb2 = sb.append("hello");
// System.out.println("sb:" + sb);
// System.out.println("sb2:" + sb2);
// System.out.println(sb == sb2); // true
// 一步一步的添加數據
// sb.append("hello");
// sb.append(true);
// sb.append(12);
// sb.append(34.56);
// 鏈式編程
sb.append("hello").append(true).append(12).append(34.56);
System.out.println("sb:" + sb);
// public StringBuffer insert(int offset,String
// str):在指定位置把任意類型的數據插入到字符串緩衝區裏面,並返回字符串緩衝區自己
sb.insert(5, "world");
System.out.println("sb:" + sb);
}
}
=========================================================
package cn.itcast_03;
/*
* StringBuffer的刪除功能
* public StringBuffer deleteCharAt(int index):刪除指定位置的字符,並返回自己
* public StringBuffer delete(int start,int end):刪除從指定位置開始指定位置結束的內容,並返回自己
*/
public class StringBufferDemo {
public static void main(String[] args) {
// 建立對象
StringBuffer sb = new StringBuffer();
// 添加功能
sb.append("hello").append("world").append("java");
System.out.println("sb:" + sb);
// public StringBuffer deleteCharAt(int index):刪除指定位置的字符,並返回自己
// 需求:我要刪除e這個字符,腫麼辦?
// sb.deleteCharAt(1);
// 需求:我要刪除第一個l這個字符,腫麼辦?
// sb.deleteCharAt(1);
// public StringBuffer delete(int start,int
// end):刪除從指定位置開始指定位置結束的內容,並返回自己
// 需求:我要刪除world這個字符串,腫麼辦?包左不包右邊
// sb.delete(5, 10);
// 需求:我要刪除全部的數據
sb.delete(0, sb.length());
System.out.println("sb:" + sb);
}
}
=====================================================================
package cn.itcast_04;
/*
* StringBuffer的替換功能:
* public StringBuffer replace(int start,int end,String str):從start開始到end用str替換
*/
public class StringBufferDemo {
public static void main(String[] args) {
// 建立字符串緩衝區對象
StringBuffer sb = new StringBuffer();
// 添加數據
sb.append("hello");
sb.append("world");
sb.append("java");
System.out.println("sb:" + sb);
// public StringBuffer replace(int start,int end,String
// str):從start開始到end用str替換
// 需求:我要把world這個數據替換爲"節日快樂"
sb.replace(5, 10, "節日快樂");
System.out.println("sb:" + sb);
}
}
=====================================================================
package cn.itcast_05;
/*
* StringBuffer的反轉功能:
* public StringBuffer reverse()
*/
public class StringBufferDemo {
public static void main(String[] args) {
// 建立字符串緩衝區對象
StringBuffer sb = new StringBuffer();
// 添加數據
sb.append("霞青林愛我");
System.out.println("sb:" + sb);
// public StringBuffer reverse()
sb.reverse();
System.out.println("sb:" + sb);
}
}
================================================================
package cn.itcast_06;
/*
* StringBuffer的截取功能:注意返回值類型再也不是StringBuffer自己了
* public String substring(int start)
* public String substring(int start,int end)
*/
public class StringBufferDemo {
public static void main(String[] args) {
// 建立字符串緩衝區對象
StringBuffer sb = new StringBuffer();
// 添加元素
sb.append("hello").append("world").append("java");
System.out.println("sb:" + sb);
// 截取功能
// public String substring(int start)
String s = sb.substring(5);
System.out.println("s:" + s);
System.out.println("sb:" + sb);
// public String substring(int start,int end)
String ss = sb.substring(5, 10);
System.out.println("ss:" + ss);
System.out.println("sb:" + sb);
}
}
=====================================
package cn.itcast_07;
/*
* 爲何咱們要講解類之間的轉換:
* A -- B的轉換
* 咱們把A轉換爲B,實際上是爲了使用B的功能。
* B -- A的轉換
* 咱們可能要的結果是A類型,因此還得轉回來。
*
* String和StringBuffer的相互轉換?
*/
public class StringBufferTest {
public static void main(String[] args) {
// String -- StringBuffer
String s = "hello";
// 注意:不能把字符串的值直接賦值給StringBuffer
// StringBuffer sb = "hello";
// StringBuffer sb = s;
// 方式1:經過構造方法
StringBuffer sb = new StringBuffer(s);
// 方式2:經過append()方法
StringBuffer sb2 = new StringBuffer();
sb2.append(s);
System.out.println("sb:" + sb);
System.out.println("sb2:" + sb2);
System.out.println("---------------");
// StringBuffer -- String
StringBuffer buffer = new StringBuffer("java");
// String(StringBuffer buffer)
// 方式1:經過構造方法
String str = new String(buffer);
// 方式2:經過toString()方法
String str2 = buffer.toString();
System.out.println("str:" + str);
System.out.println("str2:" + str2);
}
}
===========================================================================package cn.itcast_07;
/*
* 把數組拼接成一個字符串
*/
public class StringBufferTest2 {
public static void main(String[] args) {
// 定義一個數組
int[] arr = { 44, 33, 55, 11, 22 };
// 定義功能
// 方式1:用String作拼接的方式
String s1 = arrayToString(arr);
System.out.println("s1:" + s1);
// 方式2:用StringBuffer作拼接的方式
String s2 = arrayToString2(arr);
System.out.println("s2:" + s2);
}
// 用StringBuffer作拼接的方式
public static String arrayToString2(int[] arr) {
StringBuffer sb = new StringBuffer();
sb.append("[");
for (int x = 0; x < arr.length; x++) {
if (x == arr.length - 1) {
sb.append(arr[x]);
} else {
sb.append(arr[x]).append(", ");
}
}
sb.append("]");
return sb.toString();
}
// 用String作拼接的方式
public static String arrayToString(int[] arr) {
String s = "";
s += "[";
for (int x = 0; x < arr.length; x++) {
if (x == arr.length - 1) {
s += arr[x];
} else {
s += arr[x];
s += ", ";
}
}
s += "]";
return s;
}
}
===================================================================
package cn.itcast_07;
import java.util.Scanner;
/*
* 把字符串反轉
*/
public class StringBufferTest3 {
public static void main(String[] args) {
// 鍵盤錄入數據
Scanner sc = new Scanner(System.in);
System.out.println("請輸入數據:");
String s = sc.nextLine();
// 方式1:用String作拼接
String s1 = myReverse(s);
System.out.println("s1:" + s1);
// 方式2:用StringBuffer的reverse()功能
String s2 = myReverse2(s);
System.out.println("s2:" + s2);
}
// 用StringBuffer的reverse()功能
public static String myReverse2(String s) {
// StringBuffer sb = new StringBuffer();
// sb.append(s);
// StringBuffer sb = new StringBuffer(s);
// sb.reverse();
// return sb.toString();
// 簡易版
return new StringBuffer(s).reverse().toString();
}
// 用String作拼接
public static String myReverse(String s) {
String result = "";
char[] chs = s.toCharArray();
for (int x = chs.length - 1; x >= 0; x--) {
// char ch = chs[x];
// result += ch;
result += chs[x];
}
return result;
}
}
=====================================================================
package cn.itcast_08;
/*
* 面試題:
* 1:String,StringBuffer,StringBuilder的區別?
* A:String是內容不可變的,而StringBuffer,StringBuilder都是內容可變的。
* B:StringBuffer是同步的,數據安全,效率低;StringBuilder是不一樣步的,數據不安全,效率高
*
* 2:StringBuffer和數組的區別?
* 兩者均可以看出是一個容器,裝其餘的數據。
* 可是呢,StringBuffer的數據最終是一個字符串數據。
* 而數組能夠放置多種數據,但必須是同一種數據類型的。
*
* 3:形式參數問題
* String做爲參數傳遞
* StringBuffer做爲參數傳遞
*
* 形式參數:
* 基本類型:形式參數的改變不影響實際參數
* 引用類型:形式參數的改變直接影響實際參數
*
* 注意:
* String做爲參數傳遞,效果和基本類型做爲參數傳遞是同樣的。不變的
*/
public class StringBufferDemo {
public static void main(String[] args) {
String s1 = "hello";
String s2 = "world";
System.out.println(s1 + "---" + s2);// hello---world
change(s1, s2);//常量
System.out.println(s1 + "---" + s2);// hello---world
StringBuffer sb1 = new StringBuffer("hello");
StringBuffer sb2 = new StringBuffer("world");
System.out.println(sb1 + "---" + sb2);// hello---world
change(sb1, sb2);
System.out.println(sb1 + "---" + sb2);// hello---worldworld
}
public static void change(StringBuffer sb1, StringBuffer sb2) {
sb1 = sb2;
sb2.append(sb1);
}
public static void change(String s1, String s2) {
s1 = s2;
s2 = s1 + s2;
}
}
3.BigDecimal Calendar Math System
package cn.itcast_01;
/*
* 看程序寫結果:結果和咱們想的有一點點不同,這是由於float類型的數據存儲和整數不同致使的。它們大部分的時候,都是帶有有效數字位。
*
* 因爲在運算的時候,float類型和double很容易丟失精度,演示案例。因此,爲了能精確的表示、計算浮點數,Java提供了BigDecimal
*
* BigDecimal類:不可變的、任意精度的有符號十進制數,能夠解決數據丟失問題。
*/
public class BigDecimalDemo {
public static void main(String[] args) {
System.out.println(0.09 + 0.01);
System.out.println(1.0 - 0.32);
System.out.println(1.015 * 100);
System.out.println(1.301 / 100);
System.out.println(1.0 - 0.12);
}
}
========================================================================
package cn.itcast_02;
import java.math.BigDecimal;
/*
* 構造方法:
* public BigDecimal(String val)
*
* public BigDecimal add(BigDecimal augend)
* public BigDecimal subtract(BigDecimal subtrahend)
* public BigDecimal multiply(BigDecimal multiplicand)
* public BigDecimal divide(BigDecimal divisor)
* public BigDecimal divide(BigDecimal divisor,int scale,int roundingMode):商,幾位小數,如何舍取
*/
public class BigDecimalDemo {
public static void main(String[] args) {
// System.out.println(0.09 + 0.01);
// System.out.println(1.0 - 0.32);
// System.out.println(1.015 * 100);
// System.out.println(1.301 / 100);
BigDecimal bd1 = new BigDecimal("0.09");
BigDecimal bd2 = new BigDecimal("0.01");
System.out.println("add:" + bd1.add(bd2));
System.out.println("-------------------");
BigDecimal bd3 = new BigDecimal("1.0");
BigDecimal bd4 = new BigDecimal("0.32");
System.out.println("subtract:" + bd3.subtract(bd4));
System.out.println("-------------------");
BigDecimal bd5 = new BigDecimal("1.015");
BigDecimal bd6 = new BigDecimal("100");
System.out.println("multiply:" + bd5.multiply(bd6));
System.out.println("-------------------");
BigDecimal bd7 = new BigDecimal("1.301");
BigDecimal bd8 = new BigDecimal("100");
System.out.println("divide:" + bd7.divide(bd8));
System.out.println("divide:"
+ bd7.divide(bd8, 3, BigDecimal.ROUND_HALF_UP));
System.out.println("divide:"
+ bd7.divide(bd8, 8, BigDecimal.ROUND_HALF_UP));
}
}
===========================================
package cn.itcast_02;
import java.math.BigDecimal;
/*
* 構造方法:
* public BigDecimal(String val)
*
* public BigDecimal add(BigDecimal augend)
* public BigDecimal subtract(BigDecimal subtrahend)
* public BigDecimal multiply(BigDecimal multiplicand)
* public BigDecimal divide(BigDecimal divisor)
* public BigDecimal divide(BigDecimal divisor,int scale,int roundingMode):商,幾位小數,如何舍取
*/
public class BigDecimalDemo {
public static void main(String[] args) {
// System.out.println(0.09 + 0.01);
// System.out.println(1.0 - 0.32);
// System.out.println(1.015 * 100);
// System.out.println(1.301 / 100);
BigDecimal bd1 = new BigDecimal("0.09");
BigDecimal bd2 = new BigDecimal("0.01");
System.out.println("add:" + bd1.add(bd2));
System.out.println("-------------------");
BigDecimal bd3 = new BigDecimal("1.0");
BigDecimal bd4 = new BigDecimal("0.32");
System.out.println("subtract:" + bd3.subtract(bd4));
System.out.println("-------------------");
BigDecimal bd5 = new BigDecimal("1.015");
BigDecimal bd6 = new BigDecimal("100");
System.out.println("multiply:" + bd5.multiply(bd6));
System.out.println("-------------------");
BigDecimal bd7 = new BigDecimal("1.301");
BigDecimal bd8 = new BigDecimal("100");
System.out.println("divide:" + bd7.divide(bd8));
System.out.println("divide:"
+ bd7.divide(bd8, 3, BigDecimal.ROUND_HALF_UP));
System.out.println("divide:"
+ bd7.divide(bd8, 8, BigDecimal.ROUND_HALF_UP));
}
}
===================================================
// 這幾個測試,是爲了簡單超過int範圍內,Integer就不能再表示,因此就更談不上計算了。
// Integer i = new Integer(100);
// System.out.println(i);
// // System.out.println(Integer.MAX_VALUE);
// Integer ii = new Integer("2147483647");
// System.out.println(ii);
// // NumberFormatException
// Integer iii = new Integer("2147483648");
// System.out.println(iii);
// 經過大整數來建立對象
BigInteger bi = new BigInteger("2147483648");
System.out.println("bi:" + bi);
=========================================================================
package cn.itcast_02;
import java.math.BigInteger;
/*
* 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):返回商和餘數的數組
*/
public class BigIntegerDemo {
public static void main(String[] args) {
BigInteger bi1 = new BigInteger("100");
BigInteger bi2 = new BigInteger("50");
// public BigInteger add(BigInteger val):加
System.out.println("add:" + bi1.add(bi2));
// public BigInteger subtract(BigInteger val):加
System.out.println("subtract:" + bi1.subtract(bi2));
// public BigInteger multiply(BigInteger val):加
System.out.println("multiply:" + bi1.multiply(bi2));
// public BigInteger divide(BigInteger val):加
System.out.println("divide:" + bi1.divide(bi2));
// public BigInteger[] divideAndRemainder(BigInteger val):返回商和餘數的數組
BigInteger[] bis = bi1.divideAndRemainder(bi2);
System.out.println("商:" + bis[0]);
System.out.println("餘數:" + bis[1]);
}
}
==================================================
package cn.itcast_01;
import java.util.Calendar;
/*
* Calendar:它爲特定瞬間與一組諸如 YEAR、MONTH、DAY_OF_MONTH、HOUR 等 日曆字段之間的轉換提供了一些方法,併爲操做日曆字段(例如得到下星期的日期)提供了一些方法。
*
* public int get(int field):返回給定日曆字段的值。日曆類中的每一個日曆字段都是靜態的成員變量,而且是int類型。
*/
public class CalendarDemo {
public static void main(String[] args) {
// 其日曆字段已由當前日期和時間初始化:
Calendar rightNow = Calendar.getInstance(); // 子類對象
// 獲取年
int year = rightNow.get(Calendar.YEAR);
// 獲取月
int month = rightNow.get(Calendar.MONTH);
// 獲取日
int date = rightNow.get(Calendar.DATE);
System.out.println(year + "年" + (month + 1) + "月" + date + "日");
}
}
/*
* abstract class Person { public static Person getPerson() { return new
* Student(); } }
*
* class Student extends Person {
*
* }
*/
====================================================================
package cn.itcast_02;
import java.util.Calendar;
/*
* public void add(int field,int amount):根據給定的日曆字段和對應的時間,來對當前的日曆進行操做。
* public final void set(int year,int month,int date):設置當前日曆的年月日
*/
public class CalendarDemo {
public static void main(String[] args) {
// 獲取當前的日曆時間
Calendar c = Calendar.getInstance();
// 獲取年
int year = c.get(Calendar.YEAR);
// 獲取月
int month = c.get(Calendar.MONTH);
// 獲取日
int date = c.get(Calendar.DATE);
System.out.println(year + "年" + (month + 1) + "月" + date + "日");
// // 三年前的今天
// c.add(Calendar.YEAR, -3);
// // 獲取年
// year = c.get(Calendar.YEAR);
// // 獲取月
// month = c.get(Calendar.MONTH);
// // 獲取日
// date = c.get(Calendar.DATE);
// System.out.println(year + "年" + (month + 1) + "月" + date + "日");
// 5年後的10天前
c.add(Calendar.YEAR, 5);
c.add(Calendar.DATE, -10);
// 獲取年
year = c.get(Calendar.YEAR);
// 獲取月
month = c.get(Calendar.MONTH);
// 獲取日
date = c.get(Calendar.DATE);
System.out.println(year + "年" + (month + 1) + "月" + date + "日");
System.out.println("--------------");
c.set(2011, 11, 11);
// 獲取年
year = c.get(Calendar.YEAR);
// 獲取月
month = c.get(Calendar.MONTH);
// 獲取日
date = c.get(Calendar.DATE);
System.out.println(year + "年" + (month + 1) + "月" + date + "日");
}
}
===========================================================================package cn.itcast_03;
import java.util.Calendar;
import java.util.Scanner;
/*
* 獲取任意一年的二月有多少天
*
* 分析:
* A:鍵盤錄入任意的年份
* B:設置日曆對象的年月日
* 年就是A輸入的數據
* 月是2
* 日是1
* C:把時間往前推一天,就是2月的最後一天
* D:獲取這一天輸出便可
*/
public class CalendarTest {
public static void main(String[] args) {
// 鍵盤錄入任意的年份
Scanner sc = new Scanner(System.in);
System.out.println("請輸入年份:");
int year = sc.nextInt();
// 設置日曆對象的年月日
Calendar c = Calendar.getInstance();
c.set(year, 2, 1); // 實際上是這一年的3月1日
// 把時間往前推一天,就是2月的最後一天
c.add(Calendar.DATE, -1);
// 獲取這一天輸出便可
System.out.println(c.get(Calendar.DATE));
}
}
================================================================
package cn.itcast_01;
import java.util.Date;
/*
* Date:表示特定的瞬間,精確到毫秒。
*
* 構造方法:
* Date():根據當前的默認毫秒值建立日期對象
* Date(long date):根據給定的毫秒值建立日期對象
*/
public class DateDemo {
public static void main(String[] args) {
// 建立對象
Date d = new Date();
System.out.println("d:" + d);
// 建立對象
// long time = System.currentTimeMillis();
long time = 1000 * 60 * 60; // 1小時
Date d2 = new Date(time);
System.out.println("d2:" + d2);
}
}
==============================================================
package cn.itcast_02;
import java.util.Date;
/*
* public long getTime():獲取時間,以毫秒爲單位
* public void setTime(long time):設置時間
*
* 從Date獲得一個毫秒值
* getTime()
* 把一個毫秒值轉換爲Date
* 構造方法
* setTime(long time)
*/
public class DateDemo {
public static void main(String[] args) {
// 建立對象
Date d = new Date();
// 獲取時間
long time = d.getTime();
System.out.println(time);
// System.out.println(System.currentTimeMillis());
System.out.println("d:" + d);
// 設置時間
d.setTime(1000);
System.out.println("d:" + d);
}
}
=======================================================
package cn.itcast_03;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
/*
* Date -- String(格式化)
* public final String format(Date date)
*
* String -- Date(解析)
* public Date parse(String source)
*
* DateForamt:能夠進行日期和字符串的格式化和解析,可是因爲是抽象類,因此使用具體子類SimpleDateFormat。
*
* SimpleDateFormat的構造方法:
* SimpleDateFormat():默認模式
* SimpleDateFormat(String pattern):給定的模式
* 這個模式字符串該如何寫呢?
* 經過查看API,咱們就找到了對應的模式
* 年 y
* 月 M
* 日 d
* 時 H
* 分 m
* 秒 s
*
* 2014年12月12日 12:12:12
*/
public class DateFormatDemo {
public static void main(String[] args) throws ParseException {
// Date -- String
// 建立日期對象
Date d = new Date();
// 建立格式化對象
// SimpleDeFormat sdf = new SimpleDateFormat();
// 給定模式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
// public final String format(Date date)
String s = sdf.format(d);
System.out.println(s);
//String -- Date
String str = "2008-08-08 12:12:12";
//在把一個字符串解析爲日期的時候,請注意格式必須和給定的字符串格式匹配
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date dd = sdf2.parse(str);
System.out.println(dd);
}
}
===========================================================================package cn.itcast_04;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* 這是日期和字符串相互轉換的工具類
*
* @author 風清揚
*/
public class DateUtil {
private DateUtil() {
}
/**
* 這個方法的做用就是把日期轉成一個字符串
*
* @param d
* 被轉換的日期對象
* @param format
* 傳遞過來的要被轉換的格式
* @return 格式化後的字符串
*/
public static String dateToString(Date d, String format) {
// SimpleDateFormat sdf = new SimpleDateFormat(format);
// return sdf.format(d);
return new SimpleDateFormat(format).format(d);
}
/**
* 這個方法的做用就是把一個字符串解析成一個日期對象
*
* @param s
* 被解析的字符串
* @param format
* 傳遞過來的要被轉換的格式
* @return 解析後的日期對象
* @throws ParseException
*/
public static Date stringToDate(String s, String format)
throws ParseException {
return new SimpleDateFormat(format).parse(s);
}
}
============================================================
package cn.itcast_04;
import java.text.ParseException;
import java.util.Date;
/*
* 工具類的測試
*/
public class DateUtilDemo {
public static void main(String[] args) throws ParseException {
Date d = new Date();
// yyyy-MM-dd HH:mm:ss
String s = DateUtil.dateToString(d, "yyyy年MM月dd日 HH:mm:ss");
System.out.println(s);
String s2 = DateUtil.dateToString(d, "yyyy年MM月dd日");
System.out.println(s2);
String s3 = DateUtil.dateToString(d, "HH:mm:ss");
System.out.println(s3);
String str = "2014-10-14";
Date dd = DateUtil.stringToDate(str, "yyyy-MM-dd");
System.out.println(dd);
}
}
===============================================================
package cn.itcast_05;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;
/*
* 算一下你來到這個世界多少天?
*
* 分析:
* A:鍵盤錄入你的出生的年月日
* B:把該字符串轉換爲一個日期
* C:經過該日期獲得一個毫秒值
* D:獲取當前時間的毫秒值
* E:用D-C獲得一個毫秒值
* F:把E的毫秒值轉換爲年
* /1000/60/60/24
*/
public class MyYearOldDemo {
public static void main(String[] args) throws ParseException {
// 鍵盤錄入你的出生的年月日
Scanner sc = new Scanner(System.in);
System.out.println("請輸入你的出生年月日:");
String line = sc.nextLine();
// 把該字符串轉換爲一個日期
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date d = sdf.parse(line);
// 經過該日期獲得一個毫秒值
long myTime = d.getTime();
// 獲取當前時間的毫秒值
long nowTime = System.currentTimeMillis();
// 用D-C獲得一個毫秒值
long time = nowTime - myTime;
// 把E的毫秒值轉換爲年
long day = time / 1000 / 60 / 60 / 24;
System.out.println("你來到這個世界:" + day + "天");
}
}
===========================================================================
package cn.itcast_01;
/*
* Math:用於數學運算的類。
* 成員變量:
* public static final double PI
* public static final double E
* 成員方法:
* 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):a的b次冪
* public static double random():隨機數 [0.0,1.0)
* public static int round(float a) 四捨五入(參數爲double的自學)
* public static double sqrt(double a):正平方根
*/
public class MathDemo {
public static void main(String[] args) {
// public static final double PI
System.out.println("PI:" + Math.PI);
// public static final double E
System.out.println("E:" + Math.E);
System.out.println("--------------");
// public static int abs(int a):絕對值
System.out.println("abs:" + Math.abs(10));
System.out.println("abs:" + Math.abs(-10));
System.out.println("--------------");
// public static double ceil(double a):向上取整
System.out.println("ceil:" + Math.ceil(12.34));
System.out.println("ceil:" + Math.ceil(12.56));
System.out.println("--------------");
// public static double floor(double a):向下取整
System.out.println("floor:" + Math.floor(12.34));
System.out.println("floor:" + Math.floor(12.56));
System.out.println("--------------");
// public static int max(int a,int b):最大值
System.out.println("max:" + Math.max(12, 23));
// 需求:我要獲取三個數據中的最大值
// 方法的嵌套調用
System.out.println("max:" + Math.max(Math.max(12, 23), 18));
// 需求:我要獲取四個數據中的最大值
System.out.println("max:"
+ Math.max(Math.max(12, 78), Math.max(34, 56)));
System.out.println("--------------");
// public static double pow(double a,double b):a的b次冪
System.out.println("pow:" + Math.pow(2, 3));
System.out.println("--------------");
// public static double random():隨機數 [0.0,1.0)
System.out.println("random:" + Math.random());
// 獲取一個1-100之間的隨機數
System.out.println("random:" + ((int) (Math.random() * 100) + 1));
System.out.println("--------------");
// public static int round(float a) 四捨五入(參數爲double的自學)
System.out.println("round:" + Math.round(12.34f));
System.out.println("round:" + Math.round(12.56f));
System.out.println("--------------");
//public static double sqrt(double a):正平方根
System.out.println("sqrt:"+Math.sqrt(4));
}
}
===========================================================================
package cn.itcast_02;
import java.util.Scanner;
/*
* 需求:請設計一個方法,能夠實現獲取任意範圍內的隨機數。
*
* 分析:
* A:鍵盤錄入兩個數據。
* int strat;
* int end;
* B:想辦法獲取在start到end之間的隨機數
* 我寫一個功能實現這個效果,獲得一個隨機數。(int)
* C:輸出這個隨機數
*/
public class MathDemo {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("請輸入開始數:");
int start = sc.nextInt();
System.out.println("請輸入結束數:");
int end = sc.nextInt();
for (int x = 0; x < 100; x++) {
// 調用功能
int num = getRandom(start, end);
// 輸出結果
System.out.println(num);
}
}
/*
* 寫一個功能 兩個明確: 返回值類型:int 參數列表:int start,int end
*/
public static int getRandom(int start, int end) {
// 回想咱們講過的1-100之間的隨機數
// int number = (int) (Math.random() * 100) + 1;
// int number = (int) (Math.random() * end) + start;
// 發現有問題了,怎麼辦呢?
return number;
}
}
======================================================
package cn.itcast_01;
import java.util.Random;
/*
* Random:產生隨機數的類
*
* 構造方法:
* public Random():沒有給種子,用的是默認種子,是當前時間的毫秒值
* public Random(long seed):給出指定的種子
*
* 給定種子後,每次獲得的隨機數是相同的。
*
* 成員方法:
* public int nextInt():返回的是int範圍內的隨機數
* public int nextInt(int n):返回的是[0,n)範圍的內隨機數
*/
public class RandomDemo {
public static void main(String[] args) {
// 建立對象
// Random r = new Random();
Random r = new Random(1111);
for (int x = 0; x < 10; x++) {
// int num = r.nextInt();
int num = r.nextInt(100) + 1;
System.out.println(num);
}
}
}
===========================================================================package cn.itcast_01;
import java.util.Scanner;
/*
* 校驗qq號碼.
* 1:要求必須是5-15位數字
* 2:0不能開頭
*
* 分析:
* A:鍵盤錄入一個QQ號碼
* B:寫一個功能實現校驗
* C:調用功能,輸出結果。
*/
public class RegexDemo {
public static void main(String[] args) {
// 建立鍵盤錄入對象
Scanner sc = new Scanner(System.in);
System.out.println("請輸入你的QQ號碼:");
String qq = sc.nextLine();
System.out.println("checkQQ:"+checkQQ(qq));
}
/*
* 寫一個功能實現校驗 兩個明確: 明確返回值類型:boolean 明確參數列表:String qq
*/
public static boolean checkQQ(String qq) {
boolean flag = true;
// 校驗長度
if (qq.length() >= 5 && qq.length() <= 15) {
// 0不能開頭
if (!qq.startsWith("0")) {
// 必須是數字
char[] chs = qq.toCharArray();
for (int x = 0; x < chs.length; x++) {
char ch = chs[x];
if (!Character.isDigit(ch)) {
flag = false;
break;
}
}
} else {
flag = false;
}
} else {
flag = false;
}
return flag;
}
}
===========================================================================package cn.itcast_01;
import java.util.Scanner;
/*
* 正則表達式:符合必定規則的字符串。
*/
public class RegexDemo2 {
public static void main(String[] args) {
// 建立鍵盤錄入對象
Scanner sc = new Scanner(System.in);
System.out.println("請輸入你的QQ號碼:");
String qq = sc.nextLine();
System.out.println("checkQQ:" + checkQQ(qq));
}
public static boolean checkQQ(String qq) {
// String regex ="[1-9][0-9]{4,14}";
// //public boolean matches(String regex)告知此字符串是否匹配給定的正則表達式
// boolean flag = qq.matches(regex);
// return flag;
//return qq.matches("[1-9][0-9]{4,14}");
return qq.matches("[1-9]\\d{4,14}");
}
}
==========================================================
package cn.itcast_02;
import java.util.Scanner;
/*
* 判斷功能
* String類的public boolean matches(String regex)
*
* 需求:
* 判斷手機號碼是否知足要求?
*
* 分析:
* A:鍵盤錄入手機號碼
* B:定義手機號碼的規則
* 13436975980
* 13688886868
* 13866668888
* 13456789012
* 13123456789
* 18912345678
* 18886867878
* 18638833883
* C:調用功能,判斷便可
* D:輸出結果
*/
public class RegexDemo {
public static void main(String[] args) {
//鍵盤錄入手機號碼
Scanner sc = new Scanner(System.in);
System.out.println("請輸入你的手機號碼:");
String phone = sc.nextLine();
//定義手機號碼的規則
String regex = "1[38]\\d{9}";
//調用功能,判斷便可
boolean flag = phone.matches(regex);
//輸出結果
System.out.println("flag:"+flag);
}
}
====================================================
package cn.itcast_02;
import java.util.Scanner;
/*
* 校驗郵箱
*
* 分析:
* A:鍵盤錄入郵箱
* B:定義郵箱的規則
* 1517806580@qq.com
* liuyi@163.com
* linqingxia@126.com
* fengqingyang@sina.com.cn
* fqy@itcast.cn
* C:調用功能,判斷便可
* D:輸出結果
*/
public class RegexTest {
public static void main(String[] args) {
//鍵盤錄入郵箱
Scanner sc = new Scanner(System.in);
System.out.println("請輸入郵箱:");
String email = sc.nextLine();
//定義郵箱的規則
//String regex = "[a-zA-Z_0-9]+@[a-zA-Z_0-9]{2,6}(\\.[a-zA-Z_0-9]{2,3})+";
String regex = "\\w+@\\w{2,6}(\\.\\w{2,3})+";
//調用功能,判斷便可
boolean flag = email.matches(regex);
//輸出結果
System.out.println("flag:"+flag);
}
}
========================================================
A:字符
x 字符 x。舉例:'a'表示字符a
\\ 反斜線字符。
\n 新行(換行)符 ('\u000A')
\r 回車符 ('\u000D')
B:字符類
[abc] a、b 或 c(簡單類)
[^abc] 任何字符,除了 a、b 或 c(否認)
[a-zA-Z] a到 z 或 A到 Z,兩頭的字母包括在內(範圍)
[0-9] 0到9的字符都包括
如:[1-9][0-9]{4,14}表示:第一個數[1-9]表示1到9,第二個數[0-9]表示0到9 {4,14}表示[0-9]有4位到14位
C:預約義字符類
. 任何字符。個人就是.字符自己,怎麼表示呢? \.
\d 數字:[0-9]
\w 單詞字符: [a-zA-Z_0-9]
在正則表達式裏面組成單詞的東西必須有這些東西組成
D:邊界匹配器
^ 行的開頭
$ 行的結尾
\b 單詞邊界
就是否是單詞字符的地方。
舉例:hello world?haha;xixi
E:Greedy 數量詞
X? X,一次或一次也沒有
X* X,零次或屢次
X+ X,一次或屢次
X{n} X,剛好 n 次
X{n,} X,至少 n 次
X{n,m} X,至少 n 次,可是不超過 m 次
==========================================================================
package cn.itcast_01;
public class Person {
private String name;
private int age;
public Person() {
super();
}
public Person(String name, int age) {
super();
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
@Override
public String toString() {
return "Person [name=" + name + ", age=" + age + "]";
}
@Override
protected void finalize() throws Throwable {
System.out.println("當前的對象被回收了" + this);
super.finalize();
}
}
===
package cn.itcast_01;
/*
* System類包含一些有用的類字段和方法。它不能被實例化。
*
* 方法:
* public static void gc():運行垃圾回收器。
* public static void exit(int status)
* public static long currentTimeMillis()
* public static void arraycopy(Object src,int srcPos,Object dest,int destPos,int length)
*/
public class SystemDemo {
public static void main(String[] args) {
checkQQ
}
}
===========================================================================
package cn.itcast_02;
/*
* System類包含一些有用的類字段和方法。它不能被實例化。
*
* 方法:
* public static void gc():運行垃圾回收器。
* public static void exit(int status):終止當前正在運行的 Java 虛擬機。參數用做狀態碼;根據慣例,非 0 的狀態碼錶示異常終止。
* public static long currentTimeMillis():返回以毫秒爲單位的當前時間
* public static void arraycopy(Object src,int srcPos,Object dest,int destPos,int length)
*/
public class SystemDemo {
public static void main(String[] args) {
// System.out.println("咱們喜歡林青霞(東方不敗)");
// System.exit(0);
// System.out.println("咱們也喜歡趙雅芝(白娘子)");
// System.out.println(System.currentTimeMillis());
// 單獨獲得這樣的實際目前對咱們來講意義不大
// 那麼,它到底有什麼做用呢?
// 要求:請你們給我統計這段程序的運行時間
long start = System.currentTimeMillis();
for (int x = 0; x < 100000; x++) {
System.out.println("hello" + x);
}
long end = System.currentTimeMillis();
System.out.println("共耗時:" + (end - start) + "毫秒");
}
}
=============================================================
package cn.itcast_03;
import java.util.Arrays;
/*
* System類包含一些有用的類字段和方法。它不能被實例化。
*
* 方法:
* public static void gc():運行垃圾回收器。
* public static void exit(int status):終止當前正在運行的 Java 虛擬機。參數用做狀態碼;根據慣例,非 0 的狀態碼錶示異常終止。
* public static long currentTimeMillis():返回以毫秒爲單位的當前時間
* public static void arraycopy(Object src,int srcPos,Object dest,int destPos,int length)
* 從指定源數組中複製一個數組,複製從指定的位置開始,到目標數組的指定位置結束。
*/
public class SystemDemo {
public static void main(String[] args) {
// 定義數組
int[] arr = { 11, 22, 33, 44, 55 };
int[] arr2 = { 6, 7, 8, 9, 10 };
// 請你們看這個代碼的意思
System.arraycopy(arr, 1, arr2, 2, 2);
System.out.println(Arrays.toString(arr));
System.out.println(Arrays.toString(arr2));
}
}