namespace和using使用

190 阅读1分钟

1、namespace,声明下

namespace android {
namespace hardware {
namespace automotive {
namespace audiocontrol {
namespace V1_1 {
namespace implementation {

2、这个是使用哪个名空间

using ::android::hardware::hidl_array;
using ::android::hardware::hidl_memory;
using ::android::hardware::hidl_string;
using ::android::hardware::hidl_vec;
using ::android::hardware::Return;
using ::android::hardware::Void;
using ::android::sp;