最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

java23種設(shè)計模式

2023-06-18 03:10 作者:自由的萊納  | 我要投稿

在Java編程中,有23種常見的設(shè)計模式,它們被分為三個不同的分類:創(chuàng)建型模式(Creational Patterns)、結(jié)構(gòu)型模式(Structural Patterns)和行為型模式(Behavioral Patterns)。以下是對每種設(shè)計模式的簡要介紹以及示例代碼: 1. 創(chuàng)建型模式(Creational Patterns): ??a. 單例模式(Singleton Pattern):確保一個類只有一個實例,并提供全局訪問點。 ```java public class Singleton { ??private static Singleton instance; ??private Singleton() { ????// 私有構(gòu)造函數(shù) ??} ??public static Singleton getInstance() { ????if (instance == null) { ??????instance = new Singleton(); ????} ????return instance; ??} } ``` ??b. 工廠模式(Factory Pattern):通過使用工廠方法創(chuàng)建對象,而不直接實例化對象。 ```java public interface Shape { ??void draw(); } public class Rectangle implements Shape { ??@Override ??public void draw() { ????System.out.println("Drawing a rectangle."); ??} } public class Circle implements Shape { ??@Override ??public void draw() { ????System.out.println("Drawing a circle."); ??} } public class ShapeFactory { ??public Shape createShape(String shapeType) { ????if (shapeType.equalsIgnoreCase("rectangle")) { ??????return new Rectangle(); ????} else if (shapeType.equalsIgnoreCase("circle")) { ??????return new Circle(); ????} ????return null; ??} } // 使用示例 ShapeFactory factory = new ShapeFactory(); Shape rectangle = factory.createShape("rectangle"); rectangle.draw(); Shape circle = factory.createShape("circle"); circle.draw(); ``` ??c. 抽象工廠模式(Abstract Factory Pattern):提供一個接口,用于創(chuàng)建相關(guān)或依賴對象的家族,而無需指定具體類。 ```java public interface Shape { ??void draw(); } public class Rectangle implements Shape { ??@Override ??public void draw() { ????System.out.println("Drawing a rectangle."); ??} } public class Circle implements Shape { ??@Override ??public void draw() { ????System.out.println("Drawing a circle."); ??} } public interface Color { ??void fill(); } public class Red implements Color { ??@Override ??public void fill() { ????System.out.println("Filling with red color."); ??} } public class Blue implements Color { ??@Override ??public void fill() { ????System.out.println("Filling with blue color."); ??} } public interface AbstractFactory { ??Shape createShape(); ??Color createColor(); } public class ShapeFactory implements AbstractFactory { ??@Override ??public Shape createShape() { ????return new Rectangle(); ??} ??@Override ??public Color createColor() { ????return new Red(); ??} } public class ColorFactory implements AbstractFactory { ??@Override ??public Shape createShape() { ????return new Circle(); ??} ??@Override ??public Color createColor() { ????return new Blue(); ??} } // 使用示例 AbstractFactory shapeFactory = new ShapeFactory(); Shape shape = shapeFactory.createShape(); shape.draw(); Color color = shapeFactory.createColor(); color.fill(); AbstractFactory colorFactory = new ColorFactory(); Shape shape = colorFactory.createShape(); shape.draw(); Color color = colorFactory.createColor(); color.fill(); ``` ??d. 建造者模式(Builder Pattern):將一個復雜對象的構(gòu)建與其表示分別,以便同樣的構(gòu)建過程可以創(chuàng)建不同的表示。 ```java public class Car { ??private String brand; ??private String model; ??private int year; ??private Car(Builder builder) { ????this.brand = builder.brand; ????this.model = builder.model; ????this.year = builder.year; ??} ??public String getBrand() { ????return brand; ??} ??public String getModel() { ????return model; ??} ??public int getYear() { ????return year; ??} ??public static class Builder { ????private String brand; ????private String model; ????private int year; ????public Builder setBrand(String brand) { ??????this.brand = brand; ??????return this; ????} ????public Builder setModel(String model) { ??????this.model = model; ??????return this; ????} ????public Builder setYear(int year) { ??????this.year = year; ??????return this; ????} ????public Car build() { ??????return new Car(this); ????} ??} } // 使用示例 Car car = new Car.Builder() ????.setBrand("Toyota") ????.setModel("Camry") ????.setYear(2022) ????.build(); System.out.println("Brand: " + car.getBrand()); System.out.println("Model: " + car.getModel()); System.out.println("Year: " + car.getYear()); ``` 2. 結(jié)構(gòu)型模式(Structural Patterns): ??a. 適配器模式(Adapter Pattern):將一個類的接口轉(zhuǎn)換成客戶端期望的另一個接口。 ```java public interface MediaPlayer { ??void play(String audioType, String fileName); } public interface AdvancedMediaPlayer { ??void playVlc(String fileName); ??void playMp4(String fileName); } public class VlcPlayer implements AdvancedMediaPlayer { ??@Override ??public void playVlc(String fileName) { ????System.out.println("Playing vlc file: " + fileName); ??} ??@Override ??public void playMp4(String fileName) { ????// 空實現(xiàn) ??} } public class Mp4Player implements AdvancedMediaPlayer { ??@Override ??public void playVlc(String fileName) { ????// 空實現(xiàn) ??} ??@Override ??public void playMp4(String fileName) { ????System.out.println("Playing mp4 file: " + fileName); ??} } public class MediaAdapter implements MediaPlayer { ??private AdvancedMediaPlayer advancedMediaPlayer; ??public MediaAdapter(String audioType) { ????if (audioType.equalsIgnoreCase("vlc")) { ??????advancedMediaPlayer = new VlcPlayer(); ????} else if (audioType.equalsIgnoreCase("mp4")) { ??????advancedMediaPlayer = new Mp4Player(); ????} ??} ??@Override ??public void play(String audioType, String fileName) { ????if (audioType.equalsIgnoreCase("vlc")) { ??????advancedMediaPlayer.playVlc(fileName); ????} else if (audioType.equalsIgnoreCase("mp4")) { ??????advancedMediaPlayer.playMp4(fileName); ????} ??} } public class AudioPlayer implements MediaPlayer { ??private MediaAdapter mediaAdapter; ??@Override ??public void play(String audioType, String fileName) { ????if (audioType.equalsIgnoreCase("mp3")) { ??????System.out.println("Playing mp3 file: " + fileName); ????} else if (audioType.equalsIgnoreCase("vlc") || audioType.equalsIgnoreCase("mp4")) { ??????mediaAdapter = new MediaAdapter(audioType); ??????mediaAdapter.play(audioType, fileName); ????} else { ??????System.out.println("Invalid media type: " + audioType); ????} ??} } // 使用示例 MediaPlayer audioPlayer = new AudioPlayer(); audioPlayer.play("mp3", "song.mp3"); audioPlayer.play("vlc", "movie.vlc"); audioPlayer.play("mp4", "video.mp4"); audioPlayer.play("avi", "movie.avi"); ``` b. 橋接模式(Bridge Pattern):將抽象部分與其具體實現(xiàn)部分分離,使它們可以獨立變化。 ```java public interface Color { ??void applyColor(); } public class Red implements Color { ??@Override ??public void applyColor() { ????System.out.println("Applying red color."); ??} } public class Blue implements Color { ??@Override ??public void applyColor() { ????System.out.println("Applying blue color."); ??} } public abstract class Shape { ??protected Color color; ??public Shape(Color color) { ????this.color = color; ??} ??abstract void applyColor(); } public class Square extends Shape { ??public Square(Color color) { ????super(color); ??} ??@Override ??void applyColor() { ????System.out.print("Square "); ????color.applyColor(); ??} } public class Circle extends Shape { ??public Circle(Color color) { ????super(color); ??} ??@Override ??void applyColor() { ????System.out.print("Circle "); ????color.applyColor(); ??} } // 使用示例 Color redColor = new Red(); Shape square = new Square(redColor); square.applyColor(); Color blueColor = new Blue(); Shape circle = new Circle(blueColor); circle.applyColor(); ``` 3. 行為型模式(Behavioral Patterns): ??a. 觀察者模式(Observer Pattern):定義對象之間的一對多依賴關(guān)系,當一個對象狀態(tài)改變時,其所有依賴者都會收到通知并自動更新。 ```java import java.util.ArrayList; import java.util.List; public interface Observer { ??void update(String message); } public class User implements Observer { ??private String name; ??public User(String name) { ????this.name = name; ??} ??@Override ??public void update(String message) { ????System.out.println(name + " received a new message: " + message); ??} } public interface Subject { ??void attach(Observer observer); ??void detach(Observer observer); ??void notifyObservers(String message); } public class ChatRoom implements Subject { ??private List observers = new ArrayList<>(); ??@Override ??public void attach(Observer observer) { ????observers.add(observer); ??} ??@Override ??public void detach(Observer observer) { ????observers.remove(observer); ??} ??@Override ??public void notifyObservers(String message) { ????for (Observer observer : observers) { ??????observer.update(message); ????} ??} ??public void sendMessage(String message) { ????notifyObservers(message); ??} } // 使用示例 ChatRoom chatRoom = new ChatRoom(); Observer user1 = new User("User 1"); Observer user2 = new User("User 2"); Observer user3 = new User("User 3"); chatRoom.attach(user1); chatRoom.attach(user2); chatRoom.attach(user3); chatRoom.sendMessage("Hello, everyone!"); chatRoom.detach(user2); chatRoom.sendMessage("User 2 has left the chat."); ``` b. 策略模式(Strategy Pattern):定義一系列算法,將每個算法封裝起來,使它們可以相互替換,使算法的變化獨立于使用它的客戶端。 ```java public interface PaymentStrategy { ??void pay(double amount); } public class CreditCardStrategy implements PaymentStrategy { ??private String cardNumber; ??private String expirationDate; ??private String cvv; ??public CreditCardStrategy(String cardNumber, String expirationDate, String cvv) { ????this.cardNumber = cardNumber; ????this.expirationDate = expirationDate; ????this.cvv = cvv; ??} ??@Override ??public void pay(double amount) { ????System.out.println("Paying " + amount + " using credit card."); ????// 執(zhí)行信用卡支付邏輯 ??} } public class PayPalStrategy implements PaymentStrategy { ??private String email; ??private String password; ??public PayPalStrategy(String email, String password) { ????this.email = email; ????this.password = password; ??} ??@Override ??public void pay(double amount) { ????System.out.println("Paying " + amount + " using PayPal."); ????// 執(zhí)行PayPal支付邏輯 ??} } public class ShoppingCart { ??private List items; ??public ShoppingCart() { ????this.items = new ArrayList<>(); ??} ??public void addItem(Item item) { ????items.add(item); ??} ??public void removeItem(Item item) { ????items.remove(item); ??} ??public double calculateTotal() { ????double total = 0.0; ????for (Item item : items) { ??????total += item.getPrice(); ????} ????return total; ??} ??public void pay(PaymentStrategy paymentStrategy) { ????double amount = calculateTotal(); ????paymentStrategy.pay(amount); ??} } public class Item { ??private String name; ??private double price; ??public Item(String name, double price) { ????this.name = name; ????this.price = price; ??} ??public String getName() { ????return name; ??} ??public double getPrice() { ????return price; ??} } // 使用示例 ShoppingCart cart = new ShoppingCart(); Item item1 = new Item("Item 1", 10.0); Item item2 = new Item("Item 2", 20.0); cart.addItem(item1); cart.addItem(item2); PaymentStrategy creditCardStrategy = new CreditCardStrategy("123456789", "12/25", "123"); cart.pay(creditCardStrategy); PaymentStrategy payPalStrategy = new PayPalStrategy("example@example.com", "password"); cart.pay(payPalStrategy); ``` 這里僅提供了每種設(shè)計模式的簡要介紹以及示例代碼。設(shè)計模式是一種用于解決特定問題的經(jīng)典解決方案,根據(jù)實際需求選擇合適的設(shè)計模式進行應用。在實際開發(fā)中,設(shè)計模式的選擇應該基于具體的情況和需求,并根據(jù)項目的規(guī)模和復雜度進行適當?shù)恼{(diào)整。

java23種設(shè)計模式的評論 (共 條)

分享到微博請遵守國家法律
佳木斯市| 迁西县| 囊谦县| 牟定县| 岐山县| 蓬安县| 蚌埠市| 突泉县| 蓝田县| 桑植县| 乐陵市| 新巴尔虎右旗| 五大连池市| 天柱县| 莲花县| 深泽县| 赤水市| 吴江市| 丰都县| 舒兰市| 吴堡县| 滁州市| 紫阳县| 穆棱市| 遵义县| 都匀市| 徐水县| 永定县| 金沙县| 镇赉县| 方城县| 莫力| 隆回县| 安康市| 得荣县| 汽车| 垣曲县| 宁海县| 汤阴县| 桂林市| 崇州市|