上一篇我們講到過,引用其實是對象的一個別名。我們知道對象是類型的具體化實例,那麼類型可不可以有別名呢?答案是可以的
#include <iostream>
using namespace std;
class human{
public:
void Talk();
~human(){cout<<"析構函數在工作..."<<endl;}
private:
int age;
};
void human::Talk(){
cout<<"Hello"<<endl;
}
int main()
{
typedef human people;
//這是定義一個類型別名,或者叫做同義詞。human是原類型,people是新類型
people p;
p.Talk();
human &b=p;//這是定義一個對象別名,引用了p這個對象
b.Talk();
return 0;
}
而typedef關鍵在在C#中並沒有對應的實現,要想對類型設置別名,C#的做法大致如下
using System;
using System.Collections.Generic;
using System.Text;
using people = CSharpProject.Human;
namespace CSharpProject
{
class Program
{
static void Main(string[] args)
{
people p = new Human();
p.Age = 50;
p.Talk();
Console.Read();
}
}
class Human {
public int Age { get; set; }
public void Talk() { Console.WriteLine("Hello,world"); }
}
}