MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / volume

Method volume

Examples/Modules/Chapter 12/Ex12_11/Box.cpp:13–16  ·  view source on GitHub ↗

Const member function definition

Source from the content-addressed store, hash-verified

11
12// Const member function definition
13double Box::volume() const
14{
15 return m_length * m_width * m_height;
16}
17
18// Modify mutable member variable from a const member function
19void Box::printVolume() const

Callers 3

mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected