Explore Connect Documentation
Snippets
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
#include <iostream>
using namespace std;
class Element {
private:
  int atomic_number;
public:
  // note the use of the explicit keyword below
  explicit Element(int an_atomic_number) :
    atomic_number(an_atomic_number) {}
  
  int get_atomic_number() const {
    return atomic_number;
  }
};
int main() {
  Element na(11);
  Element mg = 12; // error
  
  cout << na.get_atomic_number() << endl; // prints 11
  return 0;
}
Press desired key combination and then press ENTER.