→ loveme00835:是的, 在 namespace 底下用也有的, 但要注意不要出現 07/08 22:10
→ loveme00835:header 中 07/08 22:10
→ diabloevagto:底下用也有的??抱歉,我有點看不懂意思 07/08 22:29
例如像這樣
namespace Foo
{
void foo_func()
{
// blahblah
}
}
namespace Bar
{
using namespace Foo;
void bar_func()
{
foo_func();
}
}
void bazz_func()
{
Bar::bar_func();
Foo::foo_func();
}
重點應該是要讓你自己能輕易控制 using 造成的 namespace 污染範圍
這樣才能良好地達到 namespace 的用意(防止名稱重覆)
--
Les grandes et les meilleurs tone from "Zadok the Priest"
Eine grosse stattliche Veranstaltung by F. Handel
THE MAIN EVENT! These are the men
Sie sind die Besten
"Champions League" by Tony Britten THESE ARE THE CHAMPIONS!
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 1.161.11.93
推 diabloevagto:了解!感謝 07/08 23:35