C++ Builder 參考手冊(cè) ? System::Sysutils ? GUIDToString
GUID (全局唯一標(biāo)識(shí)符诡挂,globally unique identifier) 轉(zhuǎn)成字符串
頭文件:#include <System.SysUtils.hpp>
命名空間:System::Sysutils
函數(shù)原型:
System::UnicodeString __fastcall GUIDToString(const GUID &Guid);
參數(shù):
- Guid:要轉(zhuǎn)成字符串的 GUID (全局唯一標(biāo)識(shí)符恼布,globally unique identifier);
返回值:
- Guid 轉(zhuǎn)成的字符串茂契;
- 如果轉(zhuǎn)換失敗党觅,拋出 EConvertError 異常棍弄。
例:創(chuàng)建 GUID 并且顯示到 Memo1 里面
void __fastcall TForm1::Button1Click(TObject *Sender)
{
GUID guid;
if(CreateGUID(guid)==0)
{
Memo1->Lines->Add(GUIDToString(guid));
}
else
{
Memo1->Lines->Add(L"創(chuàng)建 GUID 失敺サ披摄!");
}
}
運(yùn)行結(jié)果:點(diǎn)擊 Button1 幾次馆铁,可以看到每次創(chuàng)建的 GUID 都不相同
相關(guān):
- System::Sysutils::CreateGUID
- System::Sysutils::GUIDToString
- System::Sysutils::StringToGUID
- System::Sysutils
- System::TGUID
- System
C++ Builder 參考手冊(cè) ? System::Sysutils ? GUIDToString