前面讲到了类、对象、成员的访问级别、属性,下面就用这些知识写一个面向对象的聊天机器人
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MyRobot {
class Program {
static void Main(string[] args) {
robot r1 = new robot(); r1.Name = "小i"; r1.Eat(3); robot r2 = new robot(); r2.Name = "小j"; r2.Eat(5); Console.WriteLine("请选择一个机器人:1->小i,2->小j"); robot r; string str = Console.ReadLine(); if (str == "1") {
r = r1; } |