当前位置: 首页>>代码示例>>C++>>正文


C++ Any::shortValue方法代码示例

本文整理汇总了C++中Any::shortValue方法的典型用法代码示例。如果您正苦于以下问题:C++ Any::shortValue方法的具体用法?C++ Any::shortValue怎么用?C++ Any::shortValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Any的用法示例。


在下文中一共展示了Any::shortValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: print_ref

static void print_ref(const Any & ref)
{
	auto array = With<Array>
	({
		With<String>(u8"hello"),
		With<Number>(10),
		With<Number>(10.8),
		With<Date>()
	});
	
	auto array1 = With<Array>(Thus<Array>(array));
	
	std::cerr.setf(std::ios::fixed, std::ios::floatfield);
	std::cerr.precision(10);
	
	std::cerr << "+ description() : " << ref.description() << std::endl;
	std::cerr << "+ className() : " << ref.className() << std::endl;
	std::cerr << "+ classTree() : " << ref.classTree() << std::endl;
	
	//std::cerr << ref << std::endl;
	std::cerr << "+ stringValue() : " << ref.stringValue() << std::endl;
	
	std::cerr << "+ floatValue() : " << ref.floatValue() << std::endl;
	std::cerr << "+ doubleValue() : " << ref.doubleValue() << std::endl;
	std::cerr << "+ boolValue() : " << ref.boolValue() << std::endl;
	std::cerr << "+ charValue() : " << static_cast<short>(ref.charValue()) << std::endl;
	std::cerr << "+ shortValue() : " << ref.shortValue() << std::endl;
	std::cerr << "+ intValue() : " << ref.intValue() << std::endl;
	std::cerr << "+ longValue() : " << ref.longValue() << std::endl;
	std::cerr << "+ longLongValue() : " << ref.longLongValue() << std::endl;
	std::cerr << "+ unsignedCharValue() : " << static_cast<unsigned short>(ref.unsignedCharValue()) << std::endl;
	std::cerr << "+ unsignedShortValue() : " << ref.unsignedShortValue() << std::endl;
	std::cerr << "+ unsignedIntValue() : " << ref.unsignedIntValue() << std::endl;
	std::cerr << "+ unsignedLongValue() : " << ref.unsignedLongValue() << std::endl;
	std::cerr << "+ unsignedLongLongValue() : " << ref.unsignedLongLongValue() << std::endl;
	
	std::cerr << "+ ---- + " << std::endl;
}
开发者ID:moe123,项目名称:mirroring-coconut-gitlab,代码行数:38,代码来源:coconut_test.cpp


注:本文中的Any::shortValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。