- audio: 更新 audio-system 方法文档 - components: 新增 audio-listener/audio-source 组件方法文档,新增 remove-component 方法 - core: 更新 filewriter, types 文档 - math: 更新 box 方法文档 - memory: 更新 proxy-allocator 文档 - resources: 更新 loader 和 texture 文档 - rhi: 更新 opengl 设备、shader、swap-chain 文档 - threading: 更新 mutex 和 task-system 文档
1.1 KiB
1.1 KiB
String::StartsWith
bool StartsWith(const String& prefix) const;
bool StartsWith(const char* prefix) const;
检查字符串是否以指定的前缀开头。
参数:
prefix- 要检查的前缀(String 或 const char*)
返回: 如果字符串以指定前缀开头则返回 true,否则返回 false
复杂度: O(n),其中 n 为前缀长度
示例:
#include "XCEngine/Core/Containers/String.h"
#include <iostream>
int main() {
XCEngine::Containers::String s("Hello World");
std::cout << std::boolalpha;
std::cout << s.StartsWith("Hello") << std::endl; // 输出: true
std::cout << s.StartsWith(XCEngine::Containers::String("Hello")) << std::endl; // 输出: true
std::cout << s.StartsWith("World") << std::endl; // 输出: false
std::cout << s.StartsWith("") << std::endl; // 输出: true
return 0;
}