91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JAVA入門經典實例有哪些

發布時間:2021-08-05 14:40:42 來源:億速云 閱讀:120 作者:小新 欄目:編程語言

小編給大家分享一下JAVA入門經典實例有哪些,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1.一個飼養員給動物喂食物的例子體現JAVA中的面向對象思想,接口(抽象類)的用處

package com.softeem.demo;
/**
*@author leno
*動物的接口
*/

interface Animal {
 public void eat(Food food);

}

/**
*@author leno
*一種動物類:貓
*/
class Cat implements Animal {
 public void eat(Food food) {
  System.out.println("小貓吃" + food.getName());

 }
}
/**
*@author leno
*一種動物類:狗
*/

class Dog implements Animal {
 public void eat(Food food) {
  System.out.println("小狗啃" + food.getName());
 }

}

/**
*@author leno
*食物抽象類
*/

abstract class Food {
 protected String name;
 public String getName() {
  return name;
 }
 public void setName(String name) {
  this.name = name;
 }

}

/**
*@author leno
*一種食物類:魚
*/

class Fish extends Food {
 public Fish(String name) {
  this.name = name;
 }

}

/**
*@author leno
*一種食物類:骨頭
*/
class Bone extends Food {
 public Bone(String name) {
  this.name = name;

 }
}

/**
*@author leno
*飼養員類
*
*/
class Feeder {

 /**
  *飼養員給某種動物喂某種食物
  *@param animal
  *@param food
  */

 public void feed(Animal animal, Food food) {
  animal.eat(food);
 }

}
/**
*@author leno
*測試飼養員給動物喂食物
*/

public class TestFeeder {
 public static void main(String[] args) {
  Feeder feeder = new Feeder();
  Animal animal = new Dog();
  Food food = new Bone("肉骨頭");
  feeder.feed(animal, food); //給狗喂肉骨頭
   animal = new Cat();
  food = new Fish("魚");

  feeder.feed(animal, food); //給貓喂魚

 }

}

2.做一個單子模式的類,只加載一次屬性文件

package com.softeem.demo;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
/**
* @authorleno 單子模式,保證在整個應用期間只加載一次配置屬性文件
*/

public class Singleton {
 private static Singleton instance;
 private static final String CONFIG_FILE_PATH = "E:\\config.properties";
 private Properties config;
 private Singleton() {
  config = new Properties();
  InputStream is;
  try {
   is = new FileInputStream(CONFIG_FILE_PATH);
   config.load(is);
   is.close();
  } catch (FileNotFoundException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }

 }

 public static Singleton getInstance() {
  if (instance == null) {
   instance = new Singleton();
  }
  return instance;
 }
 public Properties getConfig() {
  return config;

 }

 public void setConfig(Properties config) {

  this.config = config;

 }

}

3.用JAVA中的多線程示例銀行取款問題

package com.softeem.demo;

/**
*@author leno
*賬戶類
*默認有余額,可以取款
*/

class Account {
 private float balance = 1000;
 public float getBalance() {
  return balance;
 }

 public void setBalance(float balance) {
  this.balance = balance;
 }
 /**
  *取款的方法需要同步
  *@param money
  */
 public synchronized void withdrawals(float money) {
  if (balance >= money) {
   System.out.println("被取走" + money + "元!");
   try {
    Thread.sleep(1000);
   } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }

   balance -= money;
  } else {
   System.out.println("對不起,余額不足!");
  }
 }
}
/**
*@author leno
*銀行卡
*/

class TestAccount1 extends Thread {

 private Account account;
 public TestAccount1(Account account) {
  this.account = account;
 }
 @Override
 public void run() {
  account.withdrawals(800);
  System.out.println("余額為:" + account.getBalance() + "元!");

 }

}

/**
*@authorleno
*存折
*/

class TestAccount2 extends Thread {
 private Account account;
 public TestAccount2(Account account) {
  this.account = account;
 }

 @Override
 public void run() {
  account.withdrawals(700);
  System.out.println("余額為:" + account.getBalance() + "元!");
 }

}

public class Test {

 public static void main(String[] args) {
  Account account = new Account();
  TestAccount1 testAccount1 = new TestAccount1(account);
  testAccount1.start();
  TestAccount2 testAccount2 = new TestAccount2(account);
  testAccount2.start();

 }

}

4.用JAVA中的多線程示例生產者和消費者問題

package com.softeem.demo;
class Producer implements Runnable {
 private SyncStack stack;
 public Producer(SyncStack stack) {
  this.stack = stack;

 }

 public void run() {

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

   String product = "產品" + i;
   stack.push(product);
   System.out.println("生產了: " + product);
   try {
    Thread.sleep(200);
   } catch (InterruptedException e) {
    e.printStackTrace();
   }
  }

 }

}

class Consumer implements Runnable {
 private SyncStack stack;
 public Consumer(SyncStack stack) {
  this.stack = stack;
 }
 public void run() {
  for (int i = 0; i < stack.getProducts().length; i++) {
   String product = stack.pop();
   System.out.println("消費了: " + product);
   try {
    Thread.sleep(1000);
   } catch (InterruptedException e) {
    e.printStackTrace();

   }

  }

 }

}

class SyncStack {
 private String[] products = new String[10];
 private int index;
 public synchronized void push(String product) {
  if (index == product.length()) {
   try {
    wait();
   } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();

   }

  }

  notify();
  products[index] = product;
  index++;

 }

 public synchronized String pop() {
  if (index == 0) {
   try {
    wait();
   } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }

  }
  notify();
  index--;
  String product = products[index];
  return product;

 }
 public String[] getProducts() {
  return products;
 }

}
public class TestProducerConsumer {
 public static void main(String[] args) {
  SyncStack stack = new SyncStack();
  Producer p = new Producer(stack);
  Consumer c = new Consumer(stack);
  new Thread(p).start();
  new Thread(c).start();

 }

}

5.編程實現序列化的Student(sno,sname)對象在網絡上的傳輸

package com.softeem.demo;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.net.ServerSocket;
import java.net.Socket;
class Student implements Serializable {
 private int sno;
 private String sname;
 public Student(int sno, String sname) {
  this.sno = sno;
  this.sname = sname;

 }

 public int getSno() {
  return sno;

 }

 public void setSno(int sno) {
  this.sno = sno;

 }

 public String getSname() {
  return sname;

 }

 public void setSname(String sname) {
  this.sname = sname;
 }

 @Override

 public String toString() {
  return "學號:" + sno + ";姓名:" + sname;

 }

}
class MyClient extends Thread {
 @Override

 public void run() {
  try {
   Socket s = new Socket("localhost", 9999);
   ObjectInputStream ois = new ObjectInputStream(s.getInputStream());
   Student stu = (Student) ois.readObject();
   String msg = "客戶端程序收到服務器端程序傳輸過來的學生對象>> " + stu;
   System.out.println(msg);
   ois.close();
   s.close();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();

  } catch (ClassNotFoundException e) {
   // TODO Auto-generated catch block

   e.printStackTrace();

  }

 }

}

class MyServer extends Thread {
 @Override
 public void run() {

  try {
   ServerSocket ss = new ServerSocket(9999);
   Socket s = ss.accept();
   ObjectOutputStream ops = new ObjectOutputStream(s.getOutputStream());
   Student stu = new Student(1, "趙本山");
   ops.writeObject(stu);
   ops.close();
   s.close();
   ss.close();

  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();

  }

 }

}

public class TestTransfer {
 public static void main(String[] args) {
  new MyServer().start();
  new MyClient().start();

 }

}

以上是“JAVA入門經典實例有哪些”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乐亭县| 大石桥市| 新乡县| 鹿泉市| 章丘市| 柳河县| 吴江市| 奉贤区| 盐城市| 兴隆县| 墨竹工卡县| 公主岭市| 永春县| 紫云| 西和县| 陇南市| 恩施市| 什邡市| 泰顺县| 类乌齐县| 苏尼特左旗| 离岛区| 化隆| 如东县| 海城市| 大余县| 信宜市| 北宁市| 潜山县| 天门市| 方城县| 长海县| 大竹县| 桂东县| 含山县| 大田县| 阜平县| 保靖县| 垦利县| 会宁县| 海南省|