我的C/C++语言学习进阶之旅C++格式化字符串

Posted 字节卷动

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我的C/C++语言学习进阶之旅C++格式化字符串相关的知识,希望对你有一定的参考价值。

一、需求

最近在做OpenGL项目的时候,有个小地方需要动态化的加载贴纸,因此需要将贴纸的路径进行格式化。
比如下面的目录下存在很多贴纸,

贴纸的路径如下面的格式

 /sdcard/StickerTest/sticker1/keaizhuzhu/keaizhuzhu_000.png
 /sdcard/StickerTest/sticker1/keaizhuzhu/keaizhuzhu_001.png


 /sdcard/StickerTest/sticker1/nose/nose_000.png
  • /sdcard/StickerTest/sticker1 是目录名
  • keaizhuzhunose都是 贴纸名称和当前这个贴纸的目录
  • keaizhuzhu_000.pngkeaizhuzhu_001.png 就是贴纸的名称加上3位的序号组合而成的文件名

这些都是动态的,因此我们需要使用C++的格式化字符串相关知识。

二、写个测试代码

  • 测试程序

下面程序,我们使用两种方式来实现格式化字符串
分别是:

  1. 方法一:使用snprintf
  2. 方法二:使用stringstream
    添加头文件
    #include <iostream>
    #include <iomanip>
    

完整测试代码如下所示:

#include <iostream>
#include <sstream>
#include <iomanip>

void formatTest()

	// 类似这样的图片路径: /storage/emulated/0/StickerTest/sticker1/keaizhuzhu/keaizhuzhu_002.png

	std::string mFolderPath = "/storage/emulated/0/StickerTest/sticker1";
	std::string stickerName = "keaizhuzhu";
	int frameIndex = 2;

	// 格式化字符串  方式一:

	std::string format(mFolderPath + stickerName + "_%03d.png");
	// 计算贴纸完整路径
	char stickerItemNamePath[300];
	// 格式化,并获取最终需要的字符串
	int relLen = snprintf(stickerItemNamePath, sizeof(stickerItemNamePath), format.c_str(), frameIndex);
	std::cout << "真实字符串长度为:" << relLen << "\\n方式一格式化后字符串为:" << stickerItemNamePath << std::endl;

	// 格式化字符串  方式二:
	std::stringstream fmt;
	// 不足3位的时候,自动在数字前面加0,比如数字1补完变成001
	fmt << mFolderPath << stickerName << "_" << std::setw(3) << std::setfill('0') << frameIndex << ".png";
	std::string stickerItemNamePath2 = fmt.str();
	std::cout << "方式二格式化后字符串为:" << stickerItemNamePath2 << std::endl;


int main()

	formatTest();
	return 0;

  • 运行结果
真实字符串长度为:58
方式一格式化后字符串为:/storage/emulated/0/StickerTest/sticker1keaizhuzhu_002.png
方式二格式化后字符串为:/storage/emulated/0/StickerTest/sticker1keaizhuzhu_002.png

两种方式都正常拼接出我们想要的格式化字符串。

下面对比下这两种方式:

  1. 关于mFolderPathstickerName以及frameIndex这三个变量在实际程序中都是动态变化的。
  2. 方式一限制了字符串长度为300,这个地方是写死的,如果写小了会导致拼凑的字符串被截短,也就不是完整的图片路径了。如果写300,又有点浪费。 方法二没有限制字符串长度。

三、扩展阅读

以上是关于我的C/C++语言学习进阶之旅C++格式化字符串的主要内容,如果未能解决你的问题,请参考以下文章

我的OpenGL学习进阶之旅C++如何加载TGA文件?

我的OpenGL学习进阶之旅C++如何加载TGA文件?

我的C/C++语言学习进阶之旅收集关于MODERN C++ 11/14/17/20/23 的一些资料

我的C/C++语言学习进阶之旅收集关于MODERN C++ 11/14/17/20/23 的一些资料

我的C/C++语言学习进阶之旅C++编程常出现错误:Undefined Reference的一些常见情况分析

我的C/C++语言学习进阶之旅C++编程常出现错误:Undefined Reference的一些常见情况分析