有什么办法可以用base64进行计算吗?
我知道我可以使用 itoa 创建一个 base64 字符串,只是想知道是否有一种简单的方法可以像 cout << 一样以 base64 形式计算数字。 hex 设置一个标志以十六进制显示整数值...
I know I could use itoa to create a base64 string, just wondered if there was an easy way to cout a number in base64 the same way cout << hex sets a flag to display integral values in hex...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有内置方法(
setbase
仅接受 8、10、16 作为参数)。您必须编写自己的流操纵器。There isn't a built-in way (
setbase
only accepts 8, 10, 16 as parameters). You'll have to write your own stream manipulator.这是一个旧代码,但有效 xstreambuf
It's an old code but valid xstreambuf