Adaptet_Model_BasketBallDemo
球员抽象类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 篮球翻译适配器
{
abstract class Player
{
protected string name;
public Player(string name)
{
this.name
2025-04-07 22:22:04
26KB
适配器模式
1