디자인 모드 (2) - 네 임 스페이스

1213 단어
개술
    이름: 네 임 스페이스
    키워드: namespace
    목적: 데이터 이름 충돌 해결, 코드 가 독성 향상
    형식: namespace 공간 이름
    예:
<?php
namespace Test;

코드 구현
  1. 디 렉 터 리 구축
|-Works
|---Common
|-----Test_1.class.php
|---Lib
|-----Test.class.php
|---index.php

2.Common/Test_1.class.php
<?php
namespace Common;

class Test {
    public function g(){
        echo __FILE__;
    }
}

3.Lib/Test.class.php
<?php
namespace Lib;

class Test {
    public function g(){
        echo __FILE__;
    }
}

3.index.php
<?php

//    
include_once "Lib/Test.class.php";
include_once "Common/Test_1.class.php";


//   
$t1=new Lib\Test;//          
$t1->g();


echo "<br/>";
//   
$t2=new Common\Test;
$t2->g();

4. 실행 결과
E:\wamp\www\Work\Lib\Test.class.php
E:\wamp\www\Work\Common\Test_1.class.php

비고: 우리 가 실행 한 후에 index. php 파일 에 같은 이름 의 Test 클래스 파일 두 개 를 동시에 도입 하 는 것 을 발견 할 수 있 습 니 다. 그 이 유 는 네 임 스페이스 가 같은 이름 의 충돌 을 해결 하 는 것 입 니 다. 그러나 예화 류 를 사용 할 때 네 임 스페이스 를 가 져 가 야 합 니 다. 그렇지 않 으 면 오류 가 발생 할 수 있 습 니 다!

좋은 웹페이지 즐겨찾기