访问对象的属性和行为
namespace ConsoleApp1
{
class Program
{
int i = 47;
public void call()
{
Console.WriteLine("调用call()方法");
for(i = 0; i < 3; i++)
{
Console.Write(i + " ");
if (i == 2)
{
Console.WriteLine();
}
}
}
//public Program()//定义构造函数
//{
//}
static void Main()
{
Program t1 = new Program();
Program t2 = new Program();
t2.i = 60;
Console.WriteLine("第一个实例对象调用变量i的结果:" + t1.i++);
t1.call(); //使用第一个对象调用类成员方法
Console.WriteLine("第二个实例对象调用变量i的结果:" + t2.i);
t2.call();
}
}
}
对象的引用
类名 对象引用名称
Book book;
通常一个引用不需要有一个对象相关联。
引用与对象相关联:
Book book = new book();