A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 构造方法
{
    class Ticket
    {
        public Ticket(int distance)
        {
            try
            {
                if (distance < 0)
                {
                    throw new Exception("距离不能为负数");


                }
                else
                {
                    this.distance = distance;
                }
            }
            catch
            {

            }
        }
        int distance;

        public int Distance
        {
            get { return distance; }

        }

        //decimal price;

        public double Price
        {
            get
            {
                if (distance >= 300)
                {
                    return 1.0 * distance * 0.8;
                }
                else if (distance > 200)
                {
                    return 1.0 * distance * 0.9;
                }
                else if (distance >= 100)
                {
                    return 1.0 * distance * 0.95;

                }
                else
                {
                    return 1.0 * distance;
                }

            }

        }
        public void ShowPrice()
        {
            Console.WriteLine("距离为{0}的票,票价为{1}", distance, Price);

        }


    }
}
主函数
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 构造方法
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入行驶的距离90");

            Ticket jl = new Ticket(Convert.ToInt32(Console.ReadLine()));
            jl.ShowPrice();
            Console.ReadKey();
        }
    }
}

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

2 个回复

倒序浏览
没有看到哪里有只读设置啊?
回复 使用道具 举报
1、首先你确实写了一个只读的属性,但在整个Ticket和Main主函数中都没有用到只读属性Distance;
2、如果你用只读属性赋值,就会报错了,比如jl.Distance=Convert.ToInt32(Console.ReadLine());
3、分析一下你的程序,你引用了Ticket对象时,是通过构造函数将distance传值到Ticket类中,
并通过this.distance=distance的方式接收了传过来的值,this.distance是在Ticket类中声明的一个变量,可以在整个Ticket类中使用,因此你的程序没有问题;
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马