package com.shrimpking.t3;
/**
* Created by IntelliJ IDEA.
*
* @Author : Shrimpking
* @create 2024/10/8 15:02
*/
public class CellPhone
{
private String type;
private String color;
private double price;
public CellPhone(String type, String color, double price)
{
this.type = type;
this.color = color;
this.price = price;
}
public void takePhoto(){
System.out.println("cellphone takePhoto...");
}
public void call(){
System.out.println("cellphone call...");
}
public void sendMessage(){
System.out.println("cellphone sendMessage...");
}
public void receiveMessage(){
System.out.println("cellphone receiveMessage...");
CellPhone
最新推荐文章于 2025-01-16 23:44:38 发布
订阅专栏 解锁全文
1779

被折叠的 条评论
为什么被折叠?



