Microsoft Announcing Windows Mobile 6.1 from LAS VEGAS April 1, 2008

Windows Mobile 6.1 screenshot

(本文翻译自Windows Mobile Team Blog http://blogs.msdn.com/windowsmobile/default.aspx)
2008年4月1日早-拉斯维加斯,微软官方正式宣布发布Windows Mobile 6.1,同时升级Internet Explorer Mobile。预装有Windows Mobile 6.1系统的终端设备将很快与消费者见面,与此同时IEMobile的更新版本将在08年晚些时候向消费者提供。

Windows Mobile 6.1中包含了许多新的功能和改进,其中包括一个重新设计的主屏幕、内置任务管理、短信客户端、以及浏览器的改进,复制&粘贴支持非触摸式设备(Windows Mobile Stander),并整合与SCMDM(Microsoft System Center Mobile Device Manager)2008整合,还改进了Windows Live集成入门向导,以及更快的蓝牙设置,更重大和显著的改善在于性能和电池寿命方面等。

关于升级
会对现在市场上多宽不同的终端设备提供升级服务。从Windows Mobile 6.1发布的公告上获知,以下设备将获得升级:

Mobile operators:

  • Alltel Wireless: HTC PPC6800, HTC Touch
  • AT&T: Samsung BlackJack II, MOTO Q 9h global, Pantech duo, AT&T Tilt by HTC
  • Sprint: A new Palm Treo and updates for the Mogul by HTC, Touch by HTC, MOTO Q 9c, Samsung ACE
  • T-Mobile International: T-Mobile MDA Ameo 16 GB, T-Mobile MDA compact IV

Device-makers:

  • ASUS: New phones including the P320, ZX1, P560, M536 and updates for the P527, P750, M930
  • HTC: A new Touch Dual for the U.S. and updates for the AT&T Tilt, Touch by HTC, Mogul by HTC from Sprint, TyTN II
  • i-mate: 8502, 9502, 8150, 6150
  • Intermec: CN3
  • Motorola: MOTO Q 9c, MOTO Q 9h global, MC70, MC9000
  • Pantech: Pantech duo
  • Samsung: BlackJack II
  • Toshiba: Portégé G810,Portégé G910

    更多信息请访问Windows Mobile page on Facebook。我们将在这个博客上发布更多与Windows Mobile 6.1有关的消息。

— Mel Sampat(Microsoft Windows Mobile Program Manager)

首先,我们来创建一个基础的`Car`类,定义其属性和基本的运行方法: ```java public class Car { private String color; private String brand; private int wheels; // 构造器 public Car(String color, String brand, int wheels) { this.color = color; this.brand = brand; this.wheels = wheels; } // 汽车跑的方法 public void run() { System.out.println("The " + brand + " car with " + color + " is running."); } } ``` 接下来,我们创建两个子类`Bus`和`Truck`,它们都继承自`Car`: ```java // 公共汽车类 public class Bus extends Car { private int maxPassengerCapacity; // 公共汽车构造器 public Bus(String color, String brand, int wheels, int maxPassengerCapacity) { super(color, brand, wheels); this.maxPassengerCapacity = maxPassengerCapacity; } // 报站方法 public void announceStop() { System.out.println("Announcing stop for the " + brand + " bus."); } // 重写跑方法 @Override public void run() { announceStop(); super.run(); } } // 载重卡车类 public class Truck extends Car { private int maxLoadWeight; // 载重卡车构造器 public Truck(String color, String brand, int wheels, int maxLoadWeight) { super(color, brand, wheels); this.maxLoadWeight = maxLoadWeight; } // 装货方法 public void loadCargo(int weight) { if (weight <= maxLoadWeight) { System.out.println("Loading " + weight + " kg of cargo in the " + brand + " truck."); } else { System.out.println("Cannot load more than the maximum capacity of " + maxLoadWeight + " kg."); } } // 卸货方法 public void unloadCargo(int weight) { if (weight <= maxLoadWeight) { System.out.println("Unloading " + weight + " kg of cargo from the " + brand + " truck."); } else { System.out.println("No cargo to unload as it exceeds the capacity."); } } // 重写跑方法 @Override public void run() { System.out.println("The " + brand + " truck with " + color + " is carrying a load and running."); } } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值