std::string 可以體現在常數表達式中嗎?
在 C 11 中,在常數表達式中使用 std::string 構成挑戰。然而,C 20 提供了一個解決方案,但需要注意的是,在常數求值結束之前必須破壞 std::string。
C 20 解決方案:
雖然您提供的程式碼片段將無法編譯,以下程式碼將:
constexpr std::size_t n = std::string("hello, world").size();
C 17 替代方案:string_view
作為替代方案,C 17 引入了 string_view,一個輕量級的類似字串的對象,用作對 char 對象序列的非擁有引用。與 std::string 不同,string_view 是不可變的,不需要銷毀。這使得它非常適合在常數表達式中使用:
constexpr std::string_view sv = "hello, world";
以上是std::string 可以在 C 中的常數表達式中使用嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!