- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经了解了数字类型,例如 int
和 long long
, 在 C++ 中以二进制格式存储。可以使用按位运算符访问和修改这些单独的位。
但是,我最近想知道为什么 std::cout
中的数字没有打印到屏幕上。也以 2 为基数,并认为它们在打印之前必须已转换为基数 10。换句话说,由于 std::cout
以 10 为基数输出这些数字,我认为必须进行一些转换过程才能将这些数字从 base-2 转换为 base-10。
总的来说,我的问题是,是否std::cout
实际上将数字从基数 2 转换为基数 10,它是如何做到的?我在这里犯了其他一些逻辑错误吗?
最佳答案
我发现 libstdc++(gcc 的标准库)源几乎无法导航,但我认为它的主要内容在这里完成:
https://github.com/gcc-mirror/gcc/blob/8e8f6434760cfe2a1c6c9644181189fdb4d987bb/libstdc%2B%2B-v3/include/bits/locale_facets.tcc#L794
这似乎对十进制数字使用了很好的“除以 10 并打印余数”技术:
do
{
*--__buf = __lit[(__v % 10) + __num_base::_S_odigits];
__v /= 10;
}
while (__v != 0);
char
type 只是一个数字,当你写一个字符时,它会在表格中查找字符。在旧的 ASCII 和新的 UTF-8 字符编码中,
'0'
是 48,
'1'
是 49,
'2'
是 50 等等。这非常方便,因为您可以通过将其添加到“0”来打印任何数字 0-9:
putchar('0' + 3) // prints 3
所以,要得到每个数字,除以 10,余数是最后一个数字:
int x = 123;
putchar('0' + (x % 10)) // prints '0' + 3, or '3'
x = x / 10; // x = 12
putchar('0' + (x % 10)) // prints '0' + 2, or '2'
x = x / 10; // x = 1
putchar('0' + (x % 10)) // prints '0' + 1, or '1'
x = x / 10; // x = 0, stop
库中的代码片段只是在循环中执行此操作。
*--__buf = ...
) - 它从右侧开始并从右到左反向打印。
关于c++ - std::cout 如何将数字类型转换为基数 10?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64880362/
我想知道 cout<
这可能是一个初学者问题,了解 cout 的工作原理可能是这里的关键。如果有人可以链接到一个好的解释,那就太好了。 cout(&cout) 的地址. cout << &cout打印出 cout 的地址.
经过一整天的编码,我不小心写了 cout << "some text" << cout; 代替 cout << "some text" << endl; 现在它打印出一个内存地址。它指向什么? 最佳答
这与 difference-between-cout-x-and-cout-operator-x 有关问题,但还是有点不同... #include int main(){ std::cout
我是 C++ 的新手,最近我花了几天时间阅读有关指针的内容。我意识到下面的 2 段代码给我不同的结果,尽管它们看起来相同。 第一段代码: int a = 5; int* ptr = &a; cout
我尝试使用更短的语法并避免在任何地方使用 std::,所以我开始使用新的别名语法。在一些例子中,我看到人们这样使用它: using json = nlohmann::json; 并尝试使用 std::
这是我的头文件 #ifndef KINGDOM_H_ #define KINGDOM_H_ #include using namespace std; namespace sict{ cla
我经常遇到要将二维数组打印到屏幕或文件的情况。我的标准方法是这样的: for(int q=0; q #include void printNumber(int x) { std::cout
有一些 cout 语句,但第一个 cout 语句末尾的空格出现在第二个 cout 语句的开头。这是代码: #include int main() { using namespace std;
我在搞乱代码时遇到了这种相当模糊的行为,这是示例: #include using namespace std; int print(void); int main(void) { cout
我收到所有 cout 和 endl 的这些错误消息: main.cc:17:5: error: ‘cout’ was not declared in this scope main.cc:17:5:
这个问题在这里已经有了答案: What is the meaning of prepended double colon "::"? (9 个回答) 关闭 7 个月前。 有一个简单的代码,包含::操
我有下面的代码,我不太明白为什么结果恰好像下面这样: #include #include using namespace std; int main () { std::stringstre
在 C++ 中,当我在 .h 文件中声明自己的命名空间时,如下所示: namespace my_own { //... } 那么,如果我在命名空间 my_own 内部或外部声明 using s
背景 IIRC,来自 Release 2.0 C++ 将单字符常量存储为类型 char而不是 int .但是在 Release 2.0 之前声明如下 cout #include using name
Problem was in IDE I am using - CLion 1.2.4 gives incorrect output inside its own output window, sol
我知道有几个这样的拷贝,但到目前为止,没有一个对我有用。我正在尝试使用 g++ 在 Ubuntu 上编译一个非常简单的 C++ 程序,但它给了我范围错误。 #include using namesp
我在这里有一个难题,我无法解决,也没有在网上找到正确的答案: 我创建了一个带有清理路由的分离线程,问题是在我的 Imac 和 Ubuntu 9.1(双核)上。我无法正确取消空闲代码中的分离线程: #i
#include #include #include using namespace std; int main() { ofstream fout("test.txt"); f
我是一名优秀的程序员,十分优秀!