נשלח בתאריך: 19 October 2007 בשעה 16:50 | | IP רשוּם
|
|
|
|
זה אחד התרגילים שמופיע במאמר של ניר אדר(מומלץ) וזה כתוב בדיוק כמו שזה מופיע שם ומשום מה זה לא עובד,מישהו יודע איפה השגיאה?..
using System;
public class CRectangle
{
private int m_height, m_width ;
public int height
{
get
{
return m_height ;
}
set
{
if (value > 0) m_height = value;
}
}
public int width
{
get
{
return m_width;
}
set
{
if (value > 0) m_width = value;
}
}
public CRectangle()
{
m_height = m_width = 10;
}
}
public class CClassExample2
{
public static int Main(string[] args)
{
CRectangle rec1, rec2;
rec1 = new CRectangle();
Console.WriteLine("Rcangle size:{0} x {1)", rec1.height, rec1.width);
rec1.heigth = 10;
rec1.width = 20;
rec2 = rec1;
Console.WriteLine("Rcangle size:{0} x {1)", rec2.height, rec2.width);
rec2.heigth = 15;
Console.WriteLine("Rcangle size:{0} x {1)", rec1.height, rec1.width);
return 0;
}
}
|