lst-0259-book.cpp
// https://godbolt.org/z/zrE55vWq3
#include <string>
#include <string_view>
using std::string; using std::string_view;
struct Person {
private: // alles ab hier kann von außen nicht benutzt werden
string name_;
int alter_;
string ort_;
public: // alles ab hier darf von außen verwendet werden
Person(string_view n, int a, string_view o)
: name_{n}, alter_{a}, ort_{o} { }
void drucke();
};