本文整理汇总了C++中Person::GetName方法的典型用法代码示例。如果您正苦于以下问题:C++ Person::GetName方法的具体用法?C++ Person::GetName怎么用?C++ Person::GetName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Person
的用法示例。
在下文中一共展示了Person::GetName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: operator
bool operator()(Person const person) const
{
// Remove people with name length < 4
std::string name = person.GetName();
if (name.length() < 4)
return true;
// Remove people with less then 18 years old
if (person.GetAge() < 18)
return true;
return false;
}
示例2: isValid
bool ModelValidator::isValid(const Person& patient, bool allowDefaults/* = false*/)
{
RETURN_IF_STR_EMPTY(patient.GetName(), "Patient Name");
// RETURN_IF_STR_EMPTY(patient.GetPatientID(), "Patient ID");
if (allowDefaults)
{
RETURN_IF_NOT_VALID1(patient.GetBirthDate(), true, "Patient Birth Date");
}
else
{
RETURN_IF_NOT_VALID1(patient.GetBirthDate(), false, "Patient Birth Date");
RETURN_IF_STR_EMPTY(patient.GetSex(), "Sex");
}
return true;
}