在C 中生成UUID或GUID的有效方法有三種:1. 使用Boost庫,提供多版本支持且接口簡潔;2. 手動生成適用于簡單需求的Version 4 UUID;3. 利用平臺特定API(如Windows的CoCreateGuid),無需第三方依賴。Boost適合大多數(shù)現(xiàn)代項(xiàng)目,手動實(shí)現(xiàn)適合輕量場景,平臺API適合企業(yè)環(huán)境。
If you need to generate a UUID or GUID in C , there’s no built-in standard library support for it prior to C 20, and even then, it's limited. So, most developers either use external libraries or implement their own solutions based on known UUID versions.

Here’s how you can do it effectively depending on your needs and environment.

Use a Library Like boost::uuids
Boost is one of the most common and reliable ways to generate UUIDs in C . It supports multiple UUID versions and provides clean APIs.
- Install Boost (if not already installed) via package managers like vcpkg or directly from source.
- Include
<boost></boost>
and<boost></boost>
. - Use the random generator like this:
#include <boost/uuid/uuid.hpp> #include <boost/uuid/uuid_generators.hpp> #include <boost/uuid/uuid_io.hpp> #include <iostream> int main() { boost::uuids::uuid uuid = boost::uuids::random_generator()(); std::cout << uuid << std::endl; return 0; }
This gives you a Version 4 UUID by default. If you need other versions, Boost has support for things like name-based (Version 3 or 5) and time-based (Version 1) UUIDs as well.

Generate Manually for Simple Needs
If you don’t want to pull in a big library like Boost, you can generate a basic Version 4 UUID manually.
A Version 4 UUID looks like this: xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx
Where:
- The third group starts with "4" (indicating version 4).
- The fourth group starts with "8", "9", "a", or "b".
You can create a random string following that pattern using something like:
#include <random> #include <string> #include <iostream> std::string generate_uuid_v4() { static std::random_device rd; static std::mt19937 gen(rd()); static std::uniform_int_distribution<> dis(0, 15); static std::uniform_int_distribution<> dis2(8, 11); std::string uuid = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"; for (int i = 0; i < uuid.size(); i) { if (uuid[i] == 'x') { int r = dis(gen); uuid[i] = "0123456789abcdef"[r]; } else if (uuid[i] == 'y') { int r = dis2(gen); uuid[i] = "89ab"[r - 8]; } } return uuid; } int main() { std::cout << generate_uuid_v4() << std::endl; return 0; }
This isn't cryptographically secure but works fine for simple applications.
Use Platform-Specific APIs (Windows Example)
On Windows, you can use the native API CoCreateGuid
, which is part of the COM library.
Steps:
- Include
<objbase.h>
- Link against
ole32.lib
- Call
CoCreateGuid()
to fill aGUID
struct
Example:
#include <objbase.h> #include <iostream> std::string guid_to_string(const GUID &guid) { char guidStr[37]; sprintf_s(guidStr, "X-X-X-XX-XXXXXX", guid.Data1, guid.Data2, guid.Data3, guid.Data4[0], guid.Data4[1], guid.Data4[2], guid.Data4[3], guid.Data4[4], guid.Data4[5], guid.Data4[6], guid.Data4[7]); return std::string(guidStr); } int main() { CoInitialize(nullptr); GUID guid; CoCreateGuid(&guid); std::cout << guid_to_string(guid) << std::endl; CoUninitialize(); return 0; }
This method avoids third-party dependencies and uses OS-level tools, which can be helpful in enterprise environments.
Summary of Options
- Boost: Full-featured, easy to use, supports multiple UUID versions.
- Manual generation: Lightweight, good for basic needs, not secure.
- Platform-specific APIs: No external dependencies, but not portable.
Depending on your project setup and requirements, pick the method that fits best. For most modern projects, Boost is the easiest and safest bet unless you have strict dependency limits.
基本上就這些。
以上是如何在C中生成UUID/GUID?的詳細(xì)內(nèi)容。更多信息請關(guān)注PHP中文網(wǎng)其他相關(guān)文章!

熱AI工具

Undress AI Tool
免費(fèi)脫衣服圖片

Undresser.AI Undress
人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片

AI Clothes Remover
用于從照片中去除衣服的在線人工智能工具。

Clothoff.io
AI脫衣機(jī)

Video Face Swap
使用我們完全免費(fèi)的人工智能換臉工具輕松在任何視頻中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費(fèi)的代碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
功能強(qiáng)大的PHP集成開發(fā)環(huán)境

Dreamweaver CS6
視覺化網(wǎng)頁開發(fā)工具

SublimeText3 Mac版
神級代碼編輯軟件(SublimeText3)

PHP開發(fā)AI文本摘要的核心是作為協(xié)調(diào)器調(diào)用外部AI服務(wù)API(如OpenAI、HuggingFace),實(shí)現(xiàn)文本預(yù)處理、API請求、響應(yīng)解析與結(jié)果展示;2.局限性在于計(jì)算性能弱、AI生態(tài)薄弱,應(yīng)對策略為借力API、服務(wù)解耦和異步處理;3.模型選擇需權(quán)衡摘要質(zhì)量、成本、延遲、并發(fā)、數(shù)據(jù)隱私,推薦使用GPT或BART/T5等抽象式模型;4.性能優(yōu)化包括緩存、異步隊(duì)列、批量處理和就近區(qū)域選擇,錯誤處理需覆蓋限流重試、網(wǎng)絡(luò)超時(shí)、密鑰安全、輸入驗(yàn)證及日志記錄,以確保系統(tǒng)穩(wěn)定高效運(yùn)行。

獲取std::vector的第一個(gè)元素有四種常用方法:1.使用front()方法,需確保vector非空,語義清晰且推薦日常使用;2.使用下標(biāo)[0],同樣需判空,性能與front()相當(dāng)?shù)Z義稍弱;3.使用*begin(),適用于泛型編程和STL算法配合;4.使用at(0),無需手動判空但性能較低,越界時(shí)拋出異常,適合調(diào)試或需要異常處理的場景;最佳實(shí)踐是先調(diào)用empty()檢查是否為空,再使用front()方法獲取第一個(gè)元素,避免未定義行為。

C 標(biāo)準(zhǔn)庫通過提供高效工具幫助開發(fā)者提升代碼質(zhì)量。 1.STL容器應(yīng)根據(jù)場景選擇,如vector適合連續(xù)存儲,list適合頻繁插入刪除,unordered_map適合快速查找;2.標(biāo)準(zhǔn)庫算法如sort、find、transform能提高效率并減少錯誤;3.智能指針unique_ptr和shared_ptr有效管理內(nèi)存,避免泄漏;4.其他工具如optional、variant、function增強(qiáng)代碼安全性與表達(dá)力。掌握這些核心功能可顯著優(yōu)化開發(fā)效率與代碼質(zhì)量。

函數(shù)是C 中組織代碼的基本單元,用于實(shí)現(xiàn)代碼重用和模塊化;1.函數(shù)通過聲明和定義創(chuàng)建,如intadd(inta,intb)返回兩數(shù)之和;2.調(diào)用函數(shù)時(shí)傳遞參數(shù),函數(shù)執(zhí)行后返回對應(yīng)類型的結(jié)果;3.無返回值函數(shù)使用void作為返回類型,如voidgreet(stringname)用于輸出問候信息;4.使用函數(shù)可提高代碼可讀性、避免重復(fù)并便于維護(hù),是C 編程的基礎(chǔ)概念。

std::is_same用于在編譯時(shí)判斷兩個(gè)類型是否完全相同,返回一個(gè)bool值。1.基本用法中,std::is_same::value在T和U完全相同時(shí)為true,否則為false,包括const、引用、指針等修飾符不同都會導(dǎo)致false;2.可結(jié)合std::remove_const、std::remove_reference等類型trait去除類型修飾后再比較,實(shí)現(xiàn)更靈活的類型判斷;3.實(shí)際應(yīng)用中常用于模板元編程,如配合ifconstexpr進(jìn)行條件編譯,根據(jù)類型不同執(zhí)行不同邏輯;4.從C

decltype是C 11用于編譯時(shí)推導(dǎo)表達(dá)式類型的關(guān)鍵字,其推導(dǎo)結(jié)果精確且不進(jìn)行類型轉(zhuǎn)換。1.decltype(expression)只分析類型,不計(jì)算表達(dá)式;2.對變量名decltype(x)推導(dǎo)為x的聲明類型,而decltype((x))因左值表達(dá)式推導(dǎo)為x&;3.常用于模板中通過尾置返回類型auto->decltype(t u)推導(dǎo)返回值;4.可結(jié)合auto簡化復(fù)雜類型聲明,如decltype(vec.begin())it=vec.begin();5.在模板中避免硬編碼類

C foldexpressions是C 17引入的特性,用于簡化可變參數(shù)模板中的遞歸操作。1.左折疊(args ...)從左到右求和,如sum(1,2,3,4,5)返回15;2.邏輯與(args&&...)判斷所有參數(shù)是否為真,空包返回true;3.使用(std::cout
