上传者: 38704565
|
上传时间: 2025-04-07 22:22:04
|
文件大小: 26KB
|
文件类型: PDF
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