473,386 Members | 1,779 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

How to compile the code?

I try to make a member of "dynamic_bitset" of a dynamic size that is
determined when its containing class is instantiated. The code has error
when compiling: "N is undefined" something like that. Obviously, N is
defined before x!

Does anyone know how to solve the problem?

Thanks in advance!

class bset
{
private:
int N;
boost::dynamic_bitset<> x(N);
public:
bset(int n);
};

bset::bset() : N(n)
{
}

void main()
{
bset bs;
...
}

Jul 22 '05 #1
2 1349

"ctick" <ct***@flare.com> wrote in message
news:fq***************@bgtnsc05-news.ops.worldnet.att.net...
I try to make a member of "dynamic_bitset" of a dynamic size that is
determined when its containing class is instantiated. The code has error
when compiling: "N is undefined" something like that. Obviously, N is
defined before x!

Does anyone know how to solve the problem?

Thanks in advance!

class bset
{
private:
int N;
boost::dynamic_bitset<> x(N);
public:
bset(int n);
};

bset::bset() : N(n)
{
}

void main()
{
bset bs;
...
}

Jul 22 '05 #2
Sorry hit reply too early. Answer below.

"ctick" <ct***@flare.com> wrote in message
news:fq***************@bgtnsc05-news.ops.worldnet.att.net...
I try to make a member of "dynamic_bitset" of a dynamic size that is
determined when its containing class is instantiated. The code has error
when compiling: "N is undefined" something like that. Obviously, N is
defined before x!

Does anyone know how to solve the problem?

Thanks in advance!

class bset
{
private:
int N;
boost::dynamic_bitset<> x(N);
Lose the (N)

boost::dynamic_bitset<> x;
public:
bset(int n);
};

bset::bset() : N(n)
Replace with this

bset::bset() : N(n), x(n)
{
}


Strange one, you knew you could write N(n), but you didn't know to write
x(n)?

Another point, there is no need to store the size separately, if you want
the size of a dynamic_bitset you can just say x.size(). If you store the
size separately you are wasting space and even more importantly there is
always the chance that the size of the bitset and the size in N will get out
of step.

So change the code to this

class bset
{
private:

boost::dynamic_bitset<> x;
public:
bset(int n);
int get_size() const;
};

bset::bset(int n) : x(n)
{
}

int bset::get_size() const
{
return x.size();
}

john
Jul 22 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Carmine Cairo | last post by:
Hi, I'm working on a project and today I've note a little problem during the compile fase. Here a little piece of code: // 1st version welldone = 0; size = p->getSize(); backbone = new...
10
by: Chris LaJoie | last post by:
Our company has been developing a program in C# for some time now, and we haven't had any problems with it, but just last night something cropped up that has me, and everyone else, stumped. I...
6
by: Thomas Connolly | last post by:
I have 2 pages referencing the same codebehind file in my project. Originally the pages referenced separate code behind files. Once I changed the reference to the same file, everything worked...
15
by: steve yee | last post by:
i want to detect if the compile is 32 bits or 64 bits in the source code itself. so different code are compiled respectively. how to do this?
16
by: desktop | last post by:
I have read that using templates makes types know at compile time and using inheritance the types are first decided at runtime. The use of pointers and casts also indicates that the types will...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.