本文整理汇总了C++中KeyType::c_str方法的典型用法代码示例。如果您正苦于以下问题:C++ KeyType::c_str方法的具体用法?C++ KeyType::c_str怎么用?C++ KeyType::c_str使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类KeyType
的用法示例。
在下文中一共展示了KeyType::c_str方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SetValue
bool ObjectWrapper::SetValue(const KeyType key, JSValueRef value)
{
JSStringRef strKey = JSStringCreateWithUTF8CString(key.c_str());
JSObjectSetProperty(g_ctx, m_obj, strKey, value, kJSPropertyAttributeNone, NULL);
JSStringRelease(strKey);
return true;
}
示例2: Remove
bool ObjectWrapper::Remove(const KeyType& key)
{
JSStringRef strKey = JSStringCreateWithUTF8CString(key.c_str());
JSObjectDeleteProperty(g_ctx, m_obj, strKey, NULL);
JSStringRelease(strKey);
return true;
}
示例3: GetValue
JSValueRef ObjectWrapper::GetValue(const KeyType key)
{
JSStringRef strKey = JSStringCreateWithUTF8CString(key.c_str());
JSValueRef value = JSObjectGetProperty(g_ctx, m_obj, strKey, NULL);
JSStringRelease(strKey);
return value;
}
示例4: HasKey
bool ObjectWrapper::HasKey(const KeyType& key)
{
JSStringRef strKey = JSStringCreateWithUTF8CString(key.c_str());
bool hasProperty = JSObjectHasProperty(g_ctx, m_obj, strKey);
JSStringRelease(strKey);
return hasProperty;
}