實例化是指在面向對象的編程中,把用類創建對象的過程稱為實例化。是將一個抽象的概念類,具體到該類實物的過程。實例化過程中一般由類名 對象名 = new 類名(參數1,參數2...參數n)構成。
基本介紹
- 中文名:實例化
- 外文名:instantiate
- 含義:用類創建對象的過程
- 類型:編輯過程
- 格式:類名 對象名 = new 類名
簡介
public class A{ public static void main(String[] args){ B b = new B();//實例化 b.print(); }}class B{ public void print(){ System.out.println("Hello,World!"); }}
namespace test{ class A { public int Sub(int a) { return a++; } } class B { public void Main(String[] args) { int p = (new A()).Sub(1); System.Console.WriteLine(p); System.Console.ReadKey(); } }}
使用方法
<?php class People{ public $name; public function introduceMySelf(){ echo '內容',$this->name.‘內容2’; } } $p=new People(); ?>
- 實例化的類變數名->屬性名;
- 實例化的類變數名->方法名([方法參數]);
類模板與函式模板實例化
函式模板實例化
template<typename T>void swap(T a ,T b){ T tempt=a; a=b; b=tempt;};
template void swap<int>(int,int);