当前位置: 首页 > news >正文

网站后台从哪里进去如何再腾讯云服务器做网站

网站后台从哪里进去,如何再腾讯云服务器做网站,南宁太阳能网站建设,邯山企业做网站推广一、Java SE 中的抽象概念 在 Java 中#xff0c;抽象#xff08;Abstraction#xff09;是面向对象编程的重要特性之一。抽象的核心思想是“只关注重要的特性#xff0c;而忽略不重要的细节”。抽象通常通过抽象类和接口来实现#xff0c;它帮助开发者将复杂的系统隐藏在…一、Java SE 中的抽象概念 在 Java 中抽象Abstraction是面向对象编程的重要特性之一。抽象的核心思想是“只关注重要的特性而忽略不重要的细节”。抽象通常通过抽象类和接口来实现它帮助开发者将复杂的系统隐藏在简单的接口和设计背后。 1. 抽象的定义 抽象的目的是从一组具体事物中提取出通用的特性而忽略它们的具体实现细节。在 Java 中抽象可以通过以下两种方式来实现 抽象类Abstract Class用来表示一些基本特性但不能直接实例化。它可以包含抽象方法没有实现的方法和具体方法有实现的方法。接口Interface定义一组方法签名不提供方法实现。实现接口的类需要提供接口中所有方法的实现。 2. 抽象类Abstract Class 抽象类是一个包含抽象方法的类抽象方法是没有方法体的方法。抽象类可以包含具体的方法已实现的方法和成员变量。 抽象类的特点 可以包含抽象方法和具体方法。不可以直接实例化无法创建抽象类的对象。可以有构造方法和成员变量。 抽象类的例子 abstract class Animal {// 抽象方法没有实现public abstract void sound();// 具体方法有实现public void eat() {System.out.println(This animal eats food.);} }class Dog extends Animal {// 提供抽象方法的实现public void sound() {System.out.println(Woof Woof);} }class Main {public static void main(String[] args) {Animal dog new Dog();dog.sound(); // 输出: Woof Woofdog.eat(); // 输出: This animal eats food.} }在这个例子中Animal 是一个抽象类它定义了一个抽象方法 sound 和一个具体方法 eat。Dog 类继承了 Animal 类并实现了 sound 方法。 3. 接口Interface 接口是一个完全抽象的类它定义了方法的签名没有实现任何类都可以实现一个接口并提供接口中方法的实现。 接口的特点 只能包含抽象方法从 Java 8 开始接口可以包含默认方法和静态方法。类通过 implements 关键字实现接口。一个类可以实现多个接口。 接口的例子 interface Animal {// 接口中的方法没有实现void sound(); }interface Movable {void move(); }class Dog implements Animal, Movable {public void sound() {System.out.println(Woof Woof);}public void move() {System.out.println(The dog runs.);} }class Main {public static void main(String[] args) {Dog dog new Dog();dog.sound(); // 输出: Woof Woofdog.move(); // 输出: The dog runs.} }在这个例子中Dog 类同时实现了 Animal 和 Movable 两个接口。每个接口定义了一个方法Dog 类提供了这些方法的实现。 4. 抽象与接口的比较 特性抽象类接口关键字abstractinterface方法实现可以包含抽象方法和具体方法只能包含抽象方法Java 8 支持默认方法和静态方法构造方法可以有构造方法没有构造方法继承关系一个类只能继承一个抽象类一个类可以实现多个接口成员变量可以有实例变量只能有静态常量默认是 public static final 二、抽象类类型转换 在 Java 中抽象类的类型转换通常涉及两种类型的转换 父类类型转换为子类向下转型。子类类型转换为父类向上转型。 这两种类型转换背后的核心是 继承关系 和 多态。我们将在下面通过实际的代码示例来进一步说明这两种类型转换。 1. 父类转子类向下转型 向下转型是指将父类对象转化为子类对象。在实际开发中这种转换通常是在调用子类特有的方法时使用。前提条件是父类对象的实际类型是子类类型即父类引用指向了一个子类实例否则会抛出 ClassCastException 异常。 例子父类转子类向下转型 abstract class Animal {public abstract void sound(); }class Dog extends Animal {public void sound() {System.out.println(Woof Woof);}public void fetch() {System.out.println(Dog is fetching the ball!);} }class Main {public static void main(String[] args) {Animal animal new Dog(); // 父类引用指向子类对象// 向下转型将父类引用转换为子类引用Dog dog (Dog) animal; // 强制转换为 Dog 类型dog.sound(); // 输出: Woof Woofdog.fetch(); // 输出: Dog is fetching the ball!} }解释 在这个例子中Animal 是一个抽象类Dog 是它的子类。我们创建了一个 Animal 类型的引用 animal它指向了一个 Dog 类型的对象。由于 animal 是 Animal 类型所以我们不能直接调用 Dog 类中定义的 fetch 方法。为了调用 Dog 特有的方法我们需要将 Animal 类型的引用向下转型成 Dog 类型。这样就能访问 Dog 类特有的方法 fetch()。转型时animal 实际上指向的是一个 Dog 对象所以可以安全地进行向下转型。 如果将 animal 指向一个非 Dog 类型的对象比如 Cat在进行向下转型时就会抛出 ClassCastException。 2. 子类转父类向上转型 向上转型是指将子类对象转化为父类对象。由于子类是父类的一种特殊类型向上转型是安全的不需要显式强制转换。这种转换常见于多态的实现它允许子类的对象被当做父类对象来处理。 例子子类转父类向上转型 abstract class Animal {public abstract void sound(); }class Dog extends Animal {public void sound() {System.out.println(Woof Woof);}public void fetch() {System.out.println(Dog is fetching the ball!);} }class Main {public static void main(String[] args) {Dog dog new Dog(); // 创建 Dog 类型对象Animal animal dog; // 向上转型Dog 转换为 Animal 类型animal.sound(); // 输出: Woof Woof// animal.fetch(); // 编译错误Animal 类型没有 fetch 方法} }解释 在这个例子中Dog 类是 Animal 类的子类。我们创建了一个 Dog 类型的对象 dog然后将其赋值给 Animal 类型的变量 animal。这里的转换是 向上转型因为 Dog 类型的对象被赋值给了 Animal 类型的引用Java 自动进行这种转换。向上转型后animal 变量只能访问父类 Animal 中定义的方法。如果调用 animal.fetch()编译器会报错因为 fetch() 是 Dog 类的特有方法Animal 类中没有定义 fetch() 方法。然而由于 animal 实际上是指向 Dog 对象所以可以调用 sound() 方法并且会输出 Dog 类的实现。 3. 父类转子类的异常情况 如果父类引用的实际类型并非子类类型进行类型转换时会抛出 ClassCastException。 例子类型转换异常 abstract class Animal {public abstract void sound(); }class Dog extends Animal {public void sound() {System.out.println(Woof Woof);} }class Cat extends Animal {public void sound() {System.out.println(Meow);} }class Main {public static void main(String[] args) {Animal animal new Cat(); // 创建 Cat 类型的对象引用类型为 Animal// 错误的类型转换将 Cat 转换为 DogDog dog (Dog) animal; // 会抛出 ClassCastException 异常dog.sound(); // 不会执行到这里} }解释 在这个例子中animal 实际上指向一个 Cat 对象但是我们尝试将它转换为 Dog 类型。这会导致 ClassCastException 异常。由于 animal 的实际类型是 Cat而不是 DogJava 会抛出 ClassCastException。 总结 父类转子类向下转型需要使用强制类型转换但必须确保父类对象的实际类型是子类类型否则会抛出 ClassCastException 异常。子类转父类向上转型是安全的Java 会自动进行类型转换子类对象可以赋值给父类类型的引用但只能访问父类中定义的方法和属性。 三、抽象类和接口的案例说明 业务场景1支付系统设计 我们将设计一个支付系统其中有多种支付方式比如 支付宝 和 微信支付。每种支付方式都需要实现相同的支付接口而支付系统的核心逻辑通过一个抽象类来实现。 设计说明 接口 PaymentMethod 定义了支付的基本操作如 pay。抽象类 PaymentProcessor 提供了支付的一些通用逻辑比如生成支付订单、处理支付回调等。子类 AlipayPaymentProcessor 和 WeChatPaymentProcessor 分别实现具体支付方式的支付流程。 代码实现 // 定义支付接口 interface PaymentMethod {void pay(double amount); // 支付方法 }// 抽象支付处理类 abstract class PaymentProcessor {protected String orderId;public PaymentProcessor(String orderId) {this.orderId orderId;}// 公共的支付处理逻辑public void processPayment(double amount) {System.out.println(Processing payment for order: orderId);initiatePayment(amount);onPaymentCompleted();}// 每个支付方式的具体支付操作由子类实现protected abstract void initiatePayment(double amount);// 支付完成后的操作protected void onPaymentCompleted() {System.out.println(Payment for order orderId completed.);} }// 实现支付宝支付 class AlipayPaymentProcessor extends PaymentProcessor implements PaymentMethod {public AlipayPaymentProcessor(String orderId) {super(orderId);}Overrideprotected void initiatePayment(double amount) {System.out.println(Initiating Alipay payment of amount: amount);}Overridepublic void pay(double amount) {processPayment(amount);} }// 实现微信支付 class WeChatPaymentProcessor extends PaymentProcessor implements PaymentMethod {public WeChatPaymentProcessor(String orderId) {super(orderId);}Overrideprotected void initiatePayment(double amount) {System.out.println(Initiating WeChat payment of amount: amount);}Overridepublic void pay(double amount) {processPayment(amount);} }public class Main {public static void main(String[] args) {PaymentProcessor alipayProcessor new AlipayPaymentProcessor(AL123456);alipayProcessor.pay(100.0);PaymentProcessor weChatProcessor new WeChatPaymentProcessor(WX123456);weChatProcessor.pay(200.0);} }设计说明 PaymentMethod 接口定义了支付行为。 PaymentProcessor 抽象类提供了支付流程的通用处理如 processPayment 方法而具体的支付操作如 initiatePayment则由子类实现。 AlipayPaymentProcessor 和 WeChatPaymentProcessor 类分别实现了支付宝和微信支付的具体支付逻辑。 业务场景2用户通知系统 设计一个通知系统用户可以选择接收不同类型的通知如短信、邮件和推送通知。通过接口定义不同通知方式通过抽象类实现通用的通知发送逻辑。 设计说明 接口 Notification 定义了通知的发送行为。抽象类 AbstractNotificationService 提供了发送通知的一些通用方法。子类 SMSNotificationService、EmailNotificationService、PushNotificationService 实现了具体的通知发送方式。 代码实现 // 定义通知接口 interface Notification {void sendNotification(String message); }// 抽象通知服务类 abstract class AbstractNotificationService implements Notification {protected String userId;public AbstractNotificationService(String userId) {this.userId userId;}// 发送通知的通用逻辑public void sendNotification(String message) {System.out.println(Sending notification to user: userId);sendSpecificNotification(message);}// 每个通知方式的具体发送操作由子类实现protected abstract void sendSpecificNotification(String message); }// 短信通知服务 class SMSNotificationService extends AbstractNotificationService {public SMSNotificationService(String userId) {super(userId);}Overrideprotected void sendSpecificNotification(String message) {System.out.println(Sending SMS: message);} }// 邮件通知服务 class EmailNotificationService extends AbstractNotificationService {public EmailNotificationService(String userId) {super(userId);}Overrideprotected void sendSpecificNotification(String message) {System.out.println(Sending Email: message);}}// 推送通知服务 class PushNotificationService extends AbstractNotificationService {public PushNotificationService(String userId) {super(userId);}Overrideprotected void sendSpecificNotification(String message) {System.out.println(Sending Push Notification: message);} }public class Main {public static void main(String[] args) {Notification smsService new SMSNotificationService(User123);smsService.sendNotification(Your order has been shipped!);Notification emailService new EmailNotificationService(User123);emailService.sendNotification(Your invoice is ready!);Notification pushService new PushNotificationService(User123);pushService.sendNotification(You have a new message!);} }设计说明 Notification 接口定义了 sendNotification 方法用于发送通知。AbstractNotificationService 提供了发送通知的通用流程包括处理用户ID等而具体的通知发送方式由 sendSpecificNotification 方法在子类中实现。SMSNotificationService、EmailNotificationService 和 PushNotificationService 分别实现了发送不同类型通知的逻辑。 业务场景3订单管理系统 设计一个订单管理系统其中有多种订单类型如普通订单和促销订单它们共享一些通用的订单处理逻辑但也有不同的处理方式。我们使用抽象类来实现通用订单处理逻辑接口来定义每种订单类型的额外操作。 设计说明 接口 OrderType 定义了不同订单类型的行为。抽象类 Order 提供了订单的基本属性和通用操作。子类 NormalOrder 和 PromotionalOrder 分别实现普通订单和促销订单的处理逻辑。 代码实现 // 定义订单类型接口 interface OrderType {void applyDiscount(); // 订单折扣 }// 抽象订单类 abstract class Order {protected String orderId;protected double amount;public Order(String orderId, double amount) {this.orderId orderId;this.amount amount;}// 处理订单public void processOrder() {System.out.println(Processing order: orderId);applyDiscount();printReceipt();}// 每个订单的折扣操作由子类实现protected abstract void applyDiscount();// 打印订单收据protected void printReceipt() {System.out.println(Order orderId with amount: amount);} }// 普通订单 class NormalOrder extends Order implements OrderType {public NormalOrder(String orderId, double amount) {super(orderId, amount);}Overrideprotected void applyDiscount() {System.out.println(Applying no discount for normal order.);} }// 促销订单 class PromotionalOrder extends Order implements OrderType {public PromotionalOrder(String orderId, double amount) {super(orderId, amount);}Overrideprotected void applyDiscount() {System.out.println(Applying 20% discount for promotional order.);amount amount * 0.8; // 20% 折扣}}public class Main {public static void main(String[] args) {Order normalOrder new NormalOrder(ORD12345, 500.0);normalOrder.processOrder();Order promoOrder new PromotionalOrder(ORD54321, 500.0);promoOrder.processOrder();} }设计说明 OrderType 接口定义了应用折扣的行为。Order 抽象类提供了订单的基础逻辑包含订单的 ID 和金额等字段以及通用的订单处理方法。NormalOrder 和 PromotionalOrder 类分别处理普通订单和促销订单的折扣计算并在 processOrder 方法中执行具体的折扣应用。 总结 我们通过抽象类和接口的结合来实现业务逻辑的高内聚和低耦合。抽象类提供了通用的功能实现而接口则定义了各类支付方式、通知方式和订单类型的特定行为。这样设计不仅提高了代码的可扩展性还增强了系统的灵活性使得新功能的添加变得简单。 四、练习题目 1、选择题 以下哪个选项是正确的关于Java中的接口 A. 一个类可以实现多个接口B. 一个类只能实现一个接口C. 接口不能有任何方法D. 接口中的方法只能是静态方法 正确答案A 下列关于抽象类的描述哪个是正确的 A. 抽象类不能有构造方法B. 抽象类可以有实现的方法和抽象方法C. 抽象类不能有成员变量D. 抽象类必须定义一个抽象方法 正确答案B 接口与抽象类的区别是什么 A. 接口不能有成员变量而抽象类可以B. 接口不能包含任何方法实现而抽象类可以C. 接口不可以继承其他接口而抽象类可以D. 抽象类和接口没有任何区别 正确答案A 下面的代码是如何工作 interface Animal {void sound(); }class Dog implements Animal {public void sound() {System.out.println(Bark);} }public class Test {public static void main(String[] args) {Animal myAnimal new Dog();myAnimal.sound();} }A. 会打印“Meow”B. 会打印“Bark”C. 编译错误因为接口没有实现D. 编译错误因为类Dog没有提供sound方法实现 正确答案B 如果一个类继承了抽象类并且没有实现所有抽象方法那么这个类必须是 A. 抽象类B. 接口C. 具体类D. 编译错误 正确答案A 2、代码检查题 检查以下代码并找出错误 abstract class Shape {abstract void draw(); }class Circle extends Shape {void draw() {System.out.println(Drawing Circle);} }class Test {public static void main(String[] args) {Shape s new Shape(); // 错误s.draw();} }问题 代码中存在一个错误Shape是抽象类不能直接实例化应该实例化Circle类。 修复 Shape s new Circle(); // 正确 s.draw();检查以下代码并找出错误 interface Animal {void eat();void sleep(); }class Dog implements Animal {void eat() {System.out.println(Dog eating);}void sleep() {System.out.println(Dog sleeping);} }问题 Dog类中没有正确实现Animal接口中的方法方法声明缺少public修饰符。 修复 public void eat() {System.out.println(Dog eating); }public void sleep() {System.out.println(Dog sleeping); }检查以下代码并找出错误 abstract class Vehicle {abstract void move(); }class Car extends Vehicle {void move() {System.out.println(Car moving);} }public class Test {public static void main(String[] args) {Vehicle v new Car();v.move();} }问题 代码没有问题。Car类正确地继承了Vehicle并实现了move方法程序会正常运行并输出“Car moving”。 修复 不需要修复代码是正确的。 3、代码设计题 设计一个抽象类Employee该类包含name、salary属性并有一个抽象方法calculateBonus()然后实现两个子类Manager和Developer。其中Manager类根据固定比例计算奖金Developer类根据工作年限计算奖金。 提示 Employee类包含name和salary。Manager类奖金为salary * 0.1。Developer类奖金为yearsOfExperience * 500。 代码示例 abstract class Employee {String name;double salary;Employee(String name, double salary) {this.name name;this.salary salary;}abstract double calculateBonus(); }class Manager extends Employee {Manager(String name, double salary) {super(name, salary);}double calculateBonus() {return salary * 0.1;} }class Developer extends Employee {int yearsOfExperience;Developer(String name, double salary, int yearsOfExperience) {super(name, salary);this.yearsOfExperience yearsOfExperience;}double calculateBonus() {return yearsOfExperience * 500;} }设计一个接口Flyable该接口包含fly()方法。创建类Bird和Plane分别实现Flyable接口并在fly()方法中输出不同的飞行信息。 提示 Bird类输出“Bird is flying”。Plane类输出“Plane is flying”。 代码示例 interface Flyable {void fly(); }class Bird implements Flyable {public void fly() {System.out.println(Bird is flying);} }class Plane implements Flyable {public void fly() {System.out.println(Plane is flying);} }设计一个接口Playable并实现FootballPlayer和BasketballPlayer类。每个类都有一个play()方法分别打印“Playing football”和“Playing basketball”。 提示 FootballPlayer类和BasketballPlayer类都实现Playable接口。 代码示例 interface Playable {void play(); }class FootballPlayer implements Playable {public void play() {System.out.println(Playing football);} }class BasketballPlayer implements Playable {public void play() {System.out.println(Playing basketball);} }设计一个抽象类Appliance包含turnOn()和turnOff()方法。创建WashingMachine和Refrigerator两个子类并实现这些方法。 提示 WashingMachine的turnOn()方法打印“Washing machine is running”。Refrigerator的turnOn()方法打印“Refrigerator is cooling”。 代码示例 abstract class Appliance {abstract void turnOn();abstract void turnOff(); }class WashingMachine extends Appliance {void turnOn() {System.out.println(Washing machine is running);}void turnOff() {System.out.println(Washing machine is off);} }class Refrigerator extends Appliance {void turnOn() {System.out.println(Refrigerator is cooling);}void turnOff() {System.out.println(Refrigerator is off);} }
文章转载自:
http://www.morning.lfcnj.cn.gov.cn.lfcnj.cn
http://www.morning.jwbfj.cn.gov.cn.jwbfj.cn
http://www.morning.tdldh.cn.gov.cn.tdldh.cn
http://www.morning.gybnk.cn.gov.cn.gybnk.cn
http://www.morning.znrlg.cn.gov.cn.znrlg.cn
http://www.morning.ngmjn.cn.gov.cn.ngmjn.cn
http://www.morning.ghxkm.cn.gov.cn.ghxkm.cn
http://www.morning.tjqcfw.cn.gov.cn.tjqcfw.cn
http://www.morning.nlglm.cn.gov.cn.nlglm.cn
http://www.morning.tqxtx.cn.gov.cn.tqxtx.cn
http://www.morning.slkqd.cn.gov.cn.slkqd.cn
http://www.morning.ndngj.cn.gov.cn.ndngj.cn
http://www.morning.fflnw.cn.gov.cn.fflnw.cn
http://www.morning.mhnr.cn.gov.cn.mhnr.cn
http://www.morning.pqypt.cn.gov.cn.pqypt.cn
http://www.morning.qclmz.cn.gov.cn.qclmz.cn
http://www.morning.tymnr.cn.gov.cn.tymnr.cn
http://www.morning.ntqqm.cn.gov.cn.ntqqm.cn
http://www.morning.wbxtx.cn.gov.cn.wbxtx.cn
http://www.morning.wrysm.cn.gov.cn.wrysm.cn
http://www.morning.lizpw.com.gov.cn.lizpw.com
http://www.morning.hbhnh.cn.gov.cn.hbhnh.cn
http://www.morning.nqwz.cn.gov.cn.nqwz.cn
http://www.morning.zqdhr.cn.gov.cn.zqdhr.cn
http://www.morning.qhrsy.cn.gov.cn.qhrsy.cn
http://www.morning.huayaosteel.cn.gov.cn.huayaosteel.cn
http://www.morning.ttkns.cn.gov.cn.ttkns.cn
http://www.morning.spwm.cn.gov.cn.spwm.cn
http://www.morning.rpwck.cn.gov.cn.rpwck.cn
http://www.morning.kjcfz.cn.gov.cn.kjcfz.cn
http://www.morning.qbfs.cn.gov.cn.qbfs.cn
http://www.morning.xprzq.cn.gov.cn.xprzq.cn
http://www.morning.bprsd.cn.gov.cn.bprsd.cn
http://www.morning.wtxdp.cn.gov.cn.wtxdp.cn
http://www.morning.fqmbt.cn.gov.cn.fqmbt.cn
http://www.morning.gnwpg.cn.gov.cn.gnwpg.cn
http://www.morning.ghryk.cn.gov.cn.ghryk.cn
http://www.morning.bpmnl.cn.gov.cn.bpmnl.cn
http://www.morning.txlxr.cn.gov.cn.txlxr.cn
http://www.morning.fhlfp.cn.gov.cn.fhlfp.cn
http://www.morning.zmtrk.cn.gov.cn.zmtrk.cn
http://www.morning.msbmp.cn.gov.cn.msbmp.cn
http://www.morning.mwmxs.cn.gov.cn.mwmxs.cn
http://www.morning.bklkt.cn.gov.cn.bklkt.cn
http://www.morning.fmrrr.cn.gov.cn.fmrrr.cn
http://www.morning.qjlnh.cn.gov.cn.qjlnh.cn
http://www.morning.ydxg.cn.gov.cn.ydxg.cn
http://www.morning.mnnxt.cn.gov.cn.mnnxt.cn
http://www.morning.qglqb.cn.gov.cn.qglqb.cn
http://www.morning.kyjyt.cn.gov.cn.kyjyt.cn
http://www.morning.tymwx.cn.gov.cn.tymwx.cn
http://www.morning.nba1on1.com.gov.cn.nba1on1.com
http://www.morning.msbmp.cn.gov.cn.msbmp.cn
http://www.morning.mtbsd.cn.gov.cn.mtbsd.cn
http://www.morning.bkcnq.cn.gov.cn.bkcnq.cn
http://www.morning.pcwzb.cn.gov.cn.pcwzb.cn
http://www.morning.klyyd.cn.gov.cn.klyyd.cn
http://www.morning.wfzdh.cn.gov.cn.wfzdh.cn
http://www.morning.gcdzp.cn.gov.cn.gcdzp.cn
http://www.morning.qhnmj.cn.gov.cn.qhnmj.cn
http://www.morning.gmztd.cn.gov.cn.gmztd.cn
http://www.morning.rjznm.cn.gov.cn.rjznm.cn
http://www.morning.ghrlx.cn.gov.cn.ghrlx.cn
http://www.morning.gcftl.cn.gov.cn.gcftl.cn
http://www.morning.krgjc.cn.gov.cn.krgjc.cn
http://www.morning.lsxabc.com.gov.cn.lsxabc.com
http://www.morning.nrll.cn.gov.cn.nrll.cn
http://www.morning.fnrkh.cn.gov.cn.fnrkh.cn
http://www.morning.hbywj.cn.gov.cn.hbywj.cn
http://www.morning.nrqnj.cn.gov.cn.nrqnj.cn
http://www.morning.qwnqt.cn.gov.cn.qwnqt.cn
http://www.morning.kwyq.cn.gov.cn.kwyq.cn
http://www.morning.gtkyr.cn.gov.cn.gtkyr.cn
http://www.morning.ksgjy.cn.gov.cn.ksgjy.cn
http://www.morning.kflpf.cn.gov.cn.kflpf.cn
http://www.morning.xptkl.cn.gov.cn.xptkl.cn
http://www.morning.c7623.cn.gov.cn.c7623.cn
http://www.morning.pszw.cn.gov.cn.pszw.cn
http://www.morning.fpczq.cn.gov.cn.fpczq.cn
http://www.morning.yuminfo.com.gov.cn.yuminfo.com
http://www.tj-hxxt.cn/news/243388.html

相关文章:

  • 网站 系统概述如何做jquery音乐网站
  • 网站建设的7个基本流程网站网站做维护
  • 外链网站分类手机网站建设教程
  • 厦门网站的制作深圳网站建设方维网络
  • 中山快速做网站公司关于企业网站建设的市场比质比价调查报告
  • 网站如何才能被百度收录网站后期维护合同
  • 网站首页原型图怎么做成都做网络推广的公司有哪些
  • 安徽省建设造价管理协会网站服务公司注册资金多少合适
  • 腾讯云建站网站建设面试题
  • wordpress国外网站江西南昌网站建设哪家公司好
  • 深圳建外贸网站电子商务网站建设前期
  • 网站被k 原因静态网站的好处就是安全性好从而
  • 方寸网站建设网站移动排名
  • 微信网站是多少深圳宝安高端网站建设公司
  • 上饶做网站最好的公司网站优化可以自己做么
  • 申请免费网站建设泰安中推网络科技有限公司
  • 网站必须备案吗视觉中国网站建设公司
  • 沈阳思路网站制作最新章节 62.一起来做网站吧
  • flash网站项目背景明港网站建设
  • 网页设计网站长沙王也天与葛优
  • 成都龙泉建设有限公司网站汕头集团做网站方案
  • 百度站长平台网页版nginx wordpress
  • 网站建设方案设计室内装修效果图大全2023图片
  • 注册网站给谁交钱北京网页设计公司兴田德润挺好
  • 响应式网站开发框架遵义做网站的公司
  • 杭州网站建设培训学校wordpress分类目录单个调用
  • wap网站制作开发公司高端医疗网站建设
  • 许昌做网站公司专业做网站哪家好广州网络推广平台
  • 郑州网站建设的软件网站建设产品图
  • 杭州网站建设方案推广上海做衣服版的网站