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实例,用有参构造函数实例化,并向控制台输出。 展开
(1)定义一个描述坐标点的类CPoint,包括两个私有字段x和y,分别表示x、y坐标,并封装为属性;
(2)定义两个构造函数: 一个无参构造函数,设置其默认参数值为60和75;一个根据指定的数据初始化坐标点的x、y坐标。
(3)定义一个方法display,输出某一个坐标点的x、y值。
(4)在主函数中声明一个CPoint的实例,用无参构造函数实例化它,并向控制台输出.
(5)创建另一个CPoint实例,用有参构造函数实例化,并向控制台输出。 展开
1个回答
展开全部
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);
}
}
}
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);
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询