class testarraysort {
static
void main(string args) {
int compare(tiger arg0, tiger arg1) {
int age;
int getage() {
void setage(int age) {
void setname(string name) {
void setgender(string gender) {
int compareto(tiger arg0) {
this.age - arg0.age;
最常見)
class testnormalinnerclass {
static
void main(string args) {
int age;
class inner extends b {
int age;
1:靜態成員內部類前使用static 修飾。
class teststaticinnerclass {
static
void main(string args) {
int age;
static
intcount;
class inner {
class testmethodinnerclass {
static
void main(string args) {
int age = 10;
void run() {
:使用方便,不用
再單獨的建立乙個類。
class testanonymousinnerclass {
static
void main(string args) {
int compare(tiger arg0, tiger arg1) {
int compare(tiger arg0, tiger arg1) {
class testabstractclass {
void testabstractshow();
static
int searchkey(int arr, int key){
static
void test1(){
int[10];
.println(arrays.tostring(arr));
.println(searchkey(arr, 17));
static
int binarysearch(int arr,int key){
.println(count);
if(arr[mid] < key){
void test2(){
int[100000];
.println(binarysearch(arr, 99));
( 56, 34,
47, 23, 66, 18, 82,47)
( 18, 23, 34,
47,
47, 56, 66, 82 ),
則稱該排序方法是穩定的
( 18, 23, 34,
47,
47, 56, 66, 82 ),
則稱該排序方法是
不穩定的
單選擇、氣泡排序、快速排序
void selectsort(int arr){
void test3(){
int[30];
.println(arrays.tostring(arr));
.println(arrays.tostring(arr));
總比較次數= n-1 次
總移動次數= 0 次
總比較次數≈ n2 /4 次
總移動次數≈ n2 /4 次
:左邊是有序區,右邊是待排序區。
void insertsort(int arr){
void test4(){
int[30];
.println(arrays.tostring(arr));
.println(arrays.tostring(arr));
第二十二天
區域性變數和全域性變數 在乙個函式內部定義的變數是內部變數,他只有在本函式範圍內才有效,在此函式之外是不能使用這些變數的,這稱為區域性變數。復合語句的的變數是可以用 全域性變數也叫外部變數 全域性變數從 定義從 開始用 變數的儲存類別 從空間上講剛剛的就是作用域 從空間 還可以從變數值存在的時間 生...
第二十二天實訓!!!!
類方法 也稱為靜態方法,表示類中物件的共有行為 宣告時前面需加 static 修飾符 不能被宣告為抽象的 類方法可以在不建立物件的情況下用類名直接呼叫,也可用類例項呼叫 包 是一組類的集合 乙個包可以包含若干個類檔案,還可包含若干個包 包的作用 將相關的源 檔案組織在一起 類名的空間管理,利用包來劃...
嘰裡呱啦實習第二十二天
hive元資料表結構 元資料表字段 說明 示例資料 1 hive資料庫相關的元資料表 dbs database params dbs 該錶儲存hive中所有資料庫的基本資訊 db id 資料庫id 2 param key 引數名 測試庫 param value 引數值 hdfs namenode u...