国开Android核心开发技术形考任务六答案【简答题】编写l实现中文和英文两种字符串资源。
#include <iostream>
#include <string>
using namespace std;
#define tab "/t"
字符串函数的头文件int main()
{
locale def;
cout<<def.name()<< endl;
locale current = loc();
cout<<current.name()<< endl;
float val=1234.56 ;
cout<<val<< endl;
//chage to french/france
cout.imbue(locale("chs" ));
current= loc();
cout<<current.name()<< endl;
cout<<val<< endl;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。