C++14 can directly write binary literal constants.

Source: Internet
Author: User
Table of Contents 1. Direct writing binary literal constant 1 direct writing binary literal constants

C++14 brings a 0b or 0B beginning to represent the literal constants of the binary string, becoming the binary literals. The following code

void Writebinaryliterals () {
  size_t i =;
  size_t j = 0b101010;
  cout << (i = = j) << Endl;
}

Run result output 1. In this way, you don't have to write 16-in-a-0x2a, such as the previous one, and then convert the results of the binary compute bit operations into your brain.

Author:dean

Created:2015-12-27 Day 13:49

Validate

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.