Warning: preg_grep(): Compilation failed: quantifier does not follow a repeatable item at offset 157 in /var/www/tg-me/post.php on line 75 Библиотека C/C++ разработчика | cpp, boost, qt | Telegram Webview: cppproglib/5658 -
В C++11 и новее появились атрибуты — механизм, о котором многие забывают. Атрибуты позволяют передавать дополнительную информацию компилятору, не меняя семантику кода.
[[nodiscard]] int getValue() { return 42; }
void test() { getValue(); // Предупреждение: результат функции не используется }
class [[deprecated("Используйте новый API")]] OldClass {};
// C++20: говорит компилятору, что код с [[likely]] будет выполняться чаще void process(int* data) { if (data) [[likely]] { process_data(data); } else [[unlikely]] { handle_null(); } }
Другие полезные атрибуты: [[maybe_unused]], [[fallthrough]], [[no_unique_address]] (C++20). Они делают код понятнее и помогают избежать ошибок😸
В C++11 и новее появились атрибуты — механизм, о котором многие забывают. Атрибуты позволяют передавать дополнительную информацию компилятору, не меняя семантику кода.
[[nodiscard]] int getValue() { return 42; }
void test() { getValue(); // Предупреждение: результат функции не используется }
class [[deprecated("Используйте новый API")]] OldClass {};
// C++20: говорит компилятору, что код с [[likely]] будет выполняться чаще void process(int* data) { if (data) [[likely]] { process_data(data); } else [[unlikely]] { handle_null(); } }
Другие полезные атрибуты: [[maybe_unused]], [[fallthrough]], [[no_unique_address]] (C++20). Они делают код понятнее и помогают избежать ошибок😸
Telegram today rolling out an update which brings with it several new features.The update also adds interactive emoji. When you send one of the select animated emoji in chat, you can now tap on it to initiate a full screen animation. The update also adds interactive emoji. When you send one of the select animated emoji in chat, you can now tap on it to initiate a full screen animation. This is then visible to you or anyone else who's also present in chat at the moment. The animations are also accompanied by vibrations. This is then visible to you or anyone else who's also present in chat at the moment. The animations are also accompanied by vibrations.
The S&P 500 slumped 1.8% on Monday and Tuesday, thanks to China Evergrande, the Chinese property company that looks like it is ready to default on its more-than $300 billion in debt. Cries of the next Lehman Brothers—or maybe the next Silverado?—echoed through the canyons of Wall Street as investors prepared for the worst.
Библиотека C C разработчика | cpp boost qt from us