c# 第五章 类 方法与重载
classusing aaaa;
using System;
using System.Collections.Generic;
using System.Text;namespace aaaa
{class Car{private string color;//不建议这样写,建议开头改为大写public string Color{get { return color; }set { color value; }//赋值时自动调用set//读…
2026/7/6 14:50:55