Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Apress/beginning-cpp20
/ Integer
Method
Integer
Exercises/Modules/Chapter 12/Soln12_01/Integer.cpp:4–7 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2
import <iostream>;
3
4
Integer::Integer(int value) : m_value{value}
5
{
6
std::cout <<
"Object created."
<< std::endl;
7
}
8
9
void Integer::show() const
10
{
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected