Этот вопрос закрыт для ответов, так как повторяет вопрос Почему используют шестнадцатеричную систему счисления?
@RioGomes

Why use a hexadecimal number system?

Good afternoon, flipping through the github, and I see that so many programmers use the hexadecimal number system.

Sometimes it’s clear why. For example, when the error code is 970 (10), it is easier to write 3CA (16)), it is just convenient and understandable.

BUT, for example, when small numbers are translated into a hexadecimal system, then I don’t understand this.

For example, constants:
const OP_INSERT = 0x01;
const OP_UPDATE = 0x02;
const OP_DELETE = 0x04;

etc., isn’t it easier and clearer to write in decimal notation?

Please tell me why and why it is used?
  • Вопрос задан
  • 69 просмотров
Ответы на вопрос 1
@krs
For bit operations && || etc
Ответ написан
Ваш ответ на вопрос

Вопрос закрыт для ответов и комментариев

Потому что уже есть похожий вопрос.
Похожие вопросы