-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.cpp
More file actions
31 lines (22 loc) · 750 Bytes
/
const.cpp
File metadata and controls
31 lines (22 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// Created by zing on 4/2/2020.
//
#include <iostream>
#include <bitset>
#include <cstddef>
std::size_t getNumberOfBits() {
return 3;
}
int main() {
const std::size_t numberOfBits{3}; // Compile-time constant
std::bitset<numberOfBits> b{};
const std::size_t otherNumberOfBits{getNumberOfBits()}; // Run-time constant
//std::bitset<otherNumberOfBits> b2{}; // Error
constexpr double gravity{9.8}; // ok, the value of 9.8 can be resolved at compile-time
constexpr int sum{4 + 5}; // ok, the value of 4 + 5 can be resolved at compile-time
std::cout << "Enter your age: ";
int age;
std::cin >> age;
//constexpr int myAge { age }; // not okay, age can not be resolved at compile-time
return 0;
}