forked from Ryty/lab3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSlav.cpp
41 lines (35 loc) · 849 Bytes
/
Slav.cpp
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
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "Slav.h"
#include <fstream>
#include <stdlib.h>
#include <sstream>
#include <iterator>
#include <algorithm>
using namespace std;
vector <string> Slav::names;
int Slav::_counter = 0;
void Slav::init()
{
srand(time(NULL));
ifstream file("names.dat");
copy(istream_iterator<string>(file),
istream_iterator<string>(),
back_inserter(names));
file.close();
}
Slav::Slav()
{
static int amountOfNames = (init(), names.size()); //Lazy evaliuation instrukcja wykona tylko raz, obydwie instrukcje wykonaj sie i zmienn przyjmie wartosc ostatniej instrukcj po przecinku
_name = names[rand() % amountOfNames];
_id = _counter++;
}
string Slav::description()
{
return string(" ") + _name + " [" + to_string(_id) + "]";
}
gender Slav::checkGender()
{
if (_name[_name.length()-1]=='a')
return female;
else
return male;
}