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
27
28
#include <iostream>
using namespace std;
class Element {
private:
  int atomic_number;
public:
  Element(int an_atomic_number) :
    atomic_number(an_atomic_number) {}
  
  int get_atomic_number() const {
    return atomic_number;
  }
};
// calling this function with an int parameter causes
// the converting constructor to be called
void print_element(Element x) {
  cout << x.get_atomic_number() << endl;
}
int main() {
  print_element(12); // prints 12
  
  return 0;
}
Press desired key combination and then press ENTER.