本文整理汇总了C++中fc::variant::as_int64方法的典型用法代码示例。如果您正苦于以下问题:C++ variant::as_int64方法的具体用法?C++ variant::as_int64怎么用?C++ variant::as_int64使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fc::variant
的用法示例。
在下文中一共展示了variant::as_int64方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
static inline void from_variant( const fc::variant& v, T& o, uint32_t max_depth = 1 )
{
if( v.is_string() )
o = fc::reflector<T>::from_string( v.get_string().c_str() );
else
o = fc::reflector<T>::from_int( v.as_int64() );
}
示例2:
static inline void from_variant( const fc::variant& v, T& o )
{
if( v.is_string() )
o = fc::reflector<T>::from_string( v.get_string().c_str() );
else
o = static_cast<T>(v.as_int64());
}
示例3: check_id_equal
void check_id_equal( const fc::variant& id_a, const fc::variant& id_b )
{
BOOST_REQUIRE( id_a.get_type() == id_b.get_type() );
switch( id_a.get_type() )
{
case fc::variant::int64_type:
BOOST_REQUIRE( id_a.as_int64() == id_b.as_int64() );
break;
case fc::variant::uint64_type:
BOOST_REQUIRE( id_a.as_uint64() == id_b.as_uint64() );
break;
case fc::variant::string_type:
BOOST_REQUIRE( id_a.as_string() == id_b.as_string() );
break;
case fc::variant::null_type:
break;
default:
BOOST_REQUIRE( false );
}
}