Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

C++ Class method not working properly

asker1

New Coder
I have to make class Buffer with 3 private members: kapacitet - capcity of buffer, brojElemenata - number of elements in buffer, and bafer - buffer array in which elements are stored; public function push which stores element in bafer.
Here is my code:
#include <iostream>
using namespace std;
class Buffer
{
private:
int kapacitet;
int brojElemenata;
int *bafer = new int[kapacitet];
public:
Buffer()
{
kapacitet = 0;
brojElemenata = 0;
}
Buffer(int n)
{
kapacitet = n;
brojElemenata = 0;
}
~Buffer()
{
delete [] bafer;
}
void push(int el)
{
if(brojElemenata >= kapacitet)
cout << "Bafer is full." <<endl;
else{
bafer[brojElemenata] = el;
brojElemenata++;
}
}
};
int main()
{
cout << "** BUFFER **"<<endl;
Buffer b(2);
b.push(3);
}
Everything is compiled good, with no errors, but when I run code in some cases it doesnt work.
For example:
when I try to push value greater than 3 it outputs this:
** BUFFER **
terminate called after throwing an instance of 'std::bad_array_new_length'
what(): std::bad_array_new_length
Aborted (core dumped)
In cases I push values equally or lower than 3 it works.
Does someone has explanation for this?
 

New Threads

Latest posts

Buy us a coffee!

Back
Top Bottom