Basicly i can not see the error(some run time error??) on the compiler cause the porgram runs and then it crashes...i dont know for which reason thats why i thought you guys can give me an idea cause im new to c++
Thanks in advance
int main()
{
DeckofCards deck;
deck.shuffle();
deck.dealCard();
};
class Card(header)
class Card
{
public:
int face;
int suit;
Card(int face,int suit);
string toString();
};
class Card cpp
using namespace std;
const int NumSuits = 4;
const int NumFaces = 12;
string suits[NumSuits]={"Hearts", "Diamonds", "Spades", "Clubs"};
string faces[NumFaces]={"Ace", "2", "3", "4", "5", "6", "7", "8", "9", "Jack",
"Queen", "King"};
Card::Card(int face,int suit)
{
this->face=face;
this->suit=suit;
}
string Card::toString(){
string nameSuit = suits[suit];
string nameFace = faces[face];
return nameFace+" of "+nameSuit;
}
DeckofCards h
class DeckofCards
{
public:
DeckofCards();
void shuffle();
void dealCard();
bool moreCards();
private:
vector<Card> deck;
int currentLocation, location;
};
DeckofCards cpp
DeckofCards::DeckofCards()
{
const int NumSuits = 4;
const int NumFaces = 12;
for(int i=0;i<NumFaces;i++)
for(int k=0;k<NumSuits;k++)
{
Card card(i,k);
deck.push_back(card);
currentLocation++;
}
}
void DeckofCards::shuffle(){
for(int i=0;i<52;i++)
{
location=rand()%52+1;
Card holder=deck[location];
deck[location]=deck[i];
deck[i]=holder;
}
}
void DeckofCards::dealCard(){
while(currentLocation >0){
Card returnCard = deck[currentLocation];
returnCard.toString();
currentLocation--;
}
}
bool DeckofCards::moreCards(){
int size = (int) deck.size();
if(size == 0)
return false;
else
return true;
}
deckin the context ofDeckofCards::DeckofCards()? I believe it's undefined. – Jan Dvorak Nov 15 '12 at 1:39