473,413 Members | 1,989 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,413 software developers and data experts.

C# bug

I have this class:

public class Test
{
protected System.Collections.Specialized.BitVector32 _bv32;

public System.Collections.Specialized.BitVector32 BV32 {
get { return _bv32; }
set { _bv32 = value; }
}

public Test()
{
_bv32 = new System.Collections.Specialized.BitVector32(33);
_bv32[1] = false;
}
}

Why if i do:

Test test = new Test();
int a = test.BV32.Data;
test.BV32[1] = false; // DOESN'T COMPILE!!!

it generates a compiler error in the last line???
As you can see in the Test constructor i can do:
_bv32[1] = false

FYI, I'm using VS.NET 2002.

I'm going crazy, please help me.

Pedro.
Nov 15 '05 #1
4 1448
Hi,

This is not a bug, what is happening is that you accessing the BitVector32
through a property, since BitVector32 is a struct a copy is returned. Had
your code compiled successfully, you would have modified a temporary copy of
the BitVector32 instance and had no effect on the actuall instance in the
Test object, and that would have been a bug.

Hope this helps

--
Chris Taylor
http://dotnetjunkies.com/WebLog/chris.taylor/
"Pedro" <pe***********@hotmail.com> wrote in message
news:1d**************************@posting.google.c om...
I have this class:

public class Test
{
protected System.Collections.Specialized.BitVector32 _bv32;

public System.Collections.Specialized.BitVector32 BV32 {
get { return _bv32; }
set { _bv32 = value; }
}

public Test()
{
_bv32 = new System.Collections.Specialized.BitVector32(33);
_bv32[1] = false;
}
}

Why if i do:

Test test = new Test();
int a = test.BV32.Data;
test.BV32[1] = false; // DOESN'T COMPILE!!!

it generates a compiler error in the last line???
As you can see in the Test constructor i can do:
_bv32[1] = false

FYI, I'm using VS.NET 2002.

I'm going crazy, please help me.

Pedro.

Nov 15 '05 #2
The problem is that BitVector32 is a value type (struct in C#). When you
return _bv32 from a property, you have a copy of it (not a reference, even
if Bitvector32 *seems* an array). Modifying a value type returned from a
property does not make sense, so the C# compiler complains about that.

Have a nice day
GV

"Pedro" <pe***********@hotmail.com> wrote in message
news:1d**************************@posting.google.c om...
I have this class:

public class Test
{
protected System.Collections.Specialized.BitVector32 _bv32;

public System.Collections.Specialized.BitVector32 BV32 {
get { return _bv32; }
set { _bv32 = value; }
}

public Test()
{
_bv32 = new System.Collections.Specialized.BitVector32(33);
_bv32[1] = false;
}
}

Why if i do:

Test test = new Test();
int a = test.BV32.Data;
test.BV32[1] = false; // DOESN'T COMPILE!!!

it generates a compiler error in the last line???
As you can see in the Test constructor i can do:
_bv32[1] = false

FYI, I'm using VS.NET 2002.

I'm going crazy, please help me.

Pedro.

Nov 15 '05 #3
Pedro wrote:
I have this class:

public class Test
{
protected System.Collections.Specialized.BitVector32 _bv32;

public System.Collections.Specialized.BitVector32 BV32 {
get { return _bv32; }
set { _bv32 = value; }
}

public Test()
{
_bv32 = new System.Collections.Specialized.BitVector32(33);
_bv32[1] = false;
}
}

Why if i do:

Test test = new Test();
int a = test.BV32.Data;
test.BV32[1] = false; // DOESN'T COMPILE!!!

it generates a compiler error in the last line???
As you can see in the Test constructor i can do:
_bv32[1] = false

FYI, I'm using VS.NET 2002.

I'm going crazy, please help me.


Other posts have explained why you get the error. But, what you can do
to avoid the problem is create you own indexer property:

public bool this [int index] {
get {
if ((index < 0) || (index > 31)) {
throw new IndexOutOfRangeException();
}
int bit = (1 << index);
return _bv32[bit];
}
set {
if ((index < 0) || (index > 31)) {
throw new IndexOutOfRangeException();
}
int bit = (1 << index);
_bv32[bit] = value;
}
}

Note that this indexer treats the BitVector32 as an array of bool, which
may not be what you want, but I think it's what you were going for.

The int indexer in the BitVector32 class uses the index as a bitmask,
and you're supposed to use the CreateMask() methods to set up indexers
that access individual bits - which I found extremely unintuitive. I
wonder why it was designed that way.

--
mikeb
Nov 15 '05 #4
Thank you very much guys!

mikeb <ma************@mailnull.com> wrote in message news:<OJ**************@TK2MSFTNGP09.phx.gbl>...
Pedro wrote:
I have this class:

public class Test
{
protected System.Collections.Specialized.BitVector32 _bv32;

public System.Collections.Specialized.BitVector32 BV32 {
get { return _bv32; }
set { _bv32 = value; }
}

public Test()
{
_bv32 = new System.Collections.Specialized.BitVector32(33);
_bv32[1] = false;
}
}

Why if i do:

Test test = new Test();
int a = test.BV32.Data;
test.BV32[1] = false; // DOESN'T COMPILE!!!

it generates a compiler error in the last line???
As you can see in the Test constructor i can do:
_bv32[1] = false

FYI, I'm using VS.NET 2002.

I'm going crazy, please help me.


Other posts have explained why you get the error. But, what you can do
to avoid the problem is create you own indexer property:

public bool this [int index] {
get {
if ((index < 0) || (index > 31)) {
throw new IndexOutOfRangeException();
}
int bit = (1 << index);
return _bv32[bit];
}
set {
if ((index < 0) || (index > 31)) {
throw new IndexOutOfRangeException();
}
int bit = (1 << index);
_bv32[bit] = value;
}
}

Note that this indexer treats the BitVector32 as an array of bool, which
may not be what you want, but I think it's what you were going for.

The int indexer in the BitVector32 class uses the index as a bitmask,
and you're supposed to use the CreateMask() methods to set up indexers
that access individual bits - which I found extremely unintuitive. I
wonder why it was designed that way.

Nov 15 '05 #5

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

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
1
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the...
4
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the...
1
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url ...
2
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value...
3
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

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.