1. 定义类 (1)定义一个描述坐标点的类CPoint,包括两个私有字段x和y,分别表示x、y坐标,并封装为属性;

1.定义类(1)定义一个描述坐标点的类CPoint,包括两个私有字段x和y,分别表示x、y坐标,并封装为属性;(2)定义两个构造函数:一个无参构造函数,设置其默认参数值为... 1. 定义类
(1)定义一个描述坐标点的类CPoint,包括两个私有字段x和y,分别表示x、y坐标,并封装为属性;
(2)定义两个构造函数: 一个无参构造函数,设置其默认参数值为60和75;一个根据指定的数据初始化坐标点的x、y坐标。
(3)定义一个方法display,输出某一个坐标点的x、y值。
(4)在主函数中声明一个CPoint的实例,用无参构造函数实例化它,并向控制台输出.
(5)创建另一个CPoint实例,用有参构造函数实例化,并向控制台输出。
展开
 我来答
624931250
2010-11-17
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 答辩2._1
{
class Program
{
static void Main(string[] args)
{
CPoint p = new CPoint();

p.display();
CPoint p1 = new CPoint(80,90);

p1.display();

}
}
}
定义一个类
CPoint
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 答辩2._1
{
public class CPoint
{
private int x;

public int X
{
get { return x; }
set { x = value; }
}
private int y;

public int Y
{
get { return y; }
set { y = value; }
}
public CPoint()
{
x = 60;
y = 75;
}
public CPoint(int x1,int y1)
{
x = x1;
y = y1;
}
public void display()
{
Console.WriteLine("坐标是:{0},{1}",x,y);
}
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式