473,625 Members | 2,690 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

value structs : can they have default constructors?

I've been told that value structs can have default constructors (I'm using
VS C++.NET 2005 PRO using clr:/pure syntax). But the following code
generates the following error:

value struct ValueStruct
{
double x ;
double y ;
ValueStruct() { x = y = double(0) ; } // error *
} ;

* error C3417: ValueStruct::Va lueStruct(void) ' : value types cannot contain
user-defined special member functions

Was I misinformed, or am I doing something wrong in the above code?

[==P==]
Feb 14 '06 #1
9 5793
If you look in "CSharpFinalWor kingDraftApril2 005.pdf", you read :

Because every value type implicitly has a public parameterless instance
constructor, it is not possible for a
struct type to contain an explicit declaration of a parameterless
constructor. A struct type is however
permitted to declare parameterized instance constructors (§18.3.8).

jmd

"Peter Oliphant" <po*******@Roun dTripInc.com> wrote in message
news:Ol******** ******@TK2MSFTN GP09.phx.gbl...
I've been told that value structs can have default constructors (I'm using
VS C++.NET 2005 PRO using clr:/pure syntax). But the following code
generates the following error:

value struct ValueStruct
{
double x ;
double y ;
ValueStruct() { x = y = double(0) ; } // error *
} ;

* error C3417: ValueStruct::Va lueStruct(void) ' : value types cannot
contain user-defined special member functions

Was I misinformed, or am I doing something wrong in the above code?

[==P==]

Feb 14 '06 #2
If you also look in "C++-CLI Standard.pdf", you read :

12.2.1 Value classes
A value class is a data structure that contains fields, function members, and nested types. Unlike other class
types, value classes do not support user-defined destructors, finalizers, default constructors, copy
constructors, or copy assignment operators. Value classes are designed to allow the CLI execution engine to
efficiently copy value class objects.

Hope that helps.
jmd

"Peter Oliphant" <po*******@Roun dTripInc.com> wrote in message news:Ol******** ******@TK2MSFTN GP09.phx.gbl...
I've been told that value structs can have default constructors (I'm using
VS C++.NET 2005 PRO using clr:/pure syntax). But the following code
generates the following error:

value struct ValueStruct
{
double x ;
double y ;
ValueStruct() { x = y = double(0) ; } // error *
} ;

* error C3417: ValueStruct::Va lueStruct(void) ' : value types cannot contain
user-defined special member functions

Was I misinformed, or am I doing something wrong in the above code?

[==P==]

Feb 14 '06 #3
> Because every value type implicitly has a public parameterless instance
constructor, it is not possible for a
struct type to contain an explicit declaration of a parameterless
constructor. A struct type is however
permitted to declare parameterized instance constructors (§18.3.8).
How does the implicit parameterless (i.e., default) constructor determine
the values it gives it members?

Anyway, thanks! This clarifies it for me. I got the exact opposite advice,
or more likely, I misinterpreted the advice (previously) given to me.

So, as I NOW understand it, I can create any number of constructors for a
value struct EXCEPT the default one. That is, I can create constructors
which HAVE parameters. I just tested this, and it does work... : )

[==P==]

"jmd.msdn" <jm******@newsg roup.nospam> wrote in message
news:uZ******** ******@TK2MSFTN GP11.phx.gbl... If you look in "CSharpFinalWor kingDraftApril2 005.pdf", you read :

Because every value type implicitly has a public parameterless instance
constructor, it is not possible for a
struct type to contain an explicit declaration of a parameterless
constructor. A struct type is however
permitted to declare parameterized instance constructors (§18.3.8).

jmd

"Peter Oliphant" <po*******@Roun dTripInc.com> wrote in message
news:Ol******** ******@TK2MSFTN GP09.phx.gbl...
I've been told that value structs can have default constructors (I'm
using VS C++.NET 2005 PRO using clr:/pure syntax). But the following code
generates the following error:

value struct ValueStruct
{
double x ;
double y ;
ValueStruct() { x = y = double(0) ; } // error *
} ;

* error C3417: ValueStruct::Va lueStruct(void) ' : value types cannot
contain user-defined special member functions

Was I misinformed, or am I doing something wrong in the above code?

[==P==]


Feb 14 '06 #4
"Peter Oliphant" <po*******@Roun dTripInc.com> wrote
So, as I NOW understand it, I can create any number of constructors for a
value struct EXCEPT the default one. That is, I can create constructors
which HAVE parameters. I just tested this, and it does work... : )


Value types can't have special member functions. You therefore
also cannot provide a copy constructor for a value type.

-hg
Feb 15 '06 #5
I guess I then need the definition of 'special member functions'.

Based on what you've said, a copy constructor is a special member function.
But a constructor which, I guess, DOESN'T have as its only parameter a
pointer or reference to the same class type (i.e., isn't a copy constructor)
IS allowed. Why the destinction? Or, like I said, and more importantly what
defines a 'special member function' in contrast to one that isn't 'special'?

[==P==]

"Holger Grund" <ho**********@r emove.ix-n.net> wrote in message
news:OC******** ******@TK2MSFTN GP11.phx.gbl...
"Peter Oliphant" <po*******@Roun dTripInc.com> wrote
So, as I NOW understand it, I can create any number of constructors for a
value struct EXCEPT the default one. That is, I can create constructors
which HAVE parameters. I just tested this, and it does work... : )


Value types can't have special member functions. You therefore
also cannot provide a copy constructor for a value type.

-hg

Feb 15 '06 #6
Look at http://www.plumhall.com/ecma/index.html
and download the 1.15 C++/CLI draft.

"Peter Oliphant" <po*******@Roun dTripInc.com> wrote in message
news:uF******** ******@TK2MSFTN GP12.phx.gbl...
I guess I then need the definition of 'special member functions'.

Based on what you've said, a copy constructor is a special member
function. But a constructor which, I guess, DOESN'T have as its only
parameter a pointer or reference to the same class type (i.e., isn't a
copy constructor) IS allowed. Why the destinction? Or, like I said, and
more importantly what defines a 'special member function' in contrast to
one that isn't 'special'?

[==P==]

"Holger Grund" <ho**********@r emove.ix-n.net> wrote in message
news:OC******** ******@TK2MSFTN GP11.phx.gbl...
"Peter Oliphant" <po*******@Roun dTripInc.com> wrote
So, as I NOW understand it, I can create any number of constructors for
a value struct EXCEPT the default one. That is, I can create
constructors which HAVE parameters. I just tested this, and it does
work... : )


Value types can't have special member functions. You therefore
also cannot provide a copy constructor for a value type.

-hg


Feb 15 '06 #7
Peter Oliphant wrote:
How does the implicit parameterless (i.e., default) constructor determine
the values it gives it members?


By memset'ing (filling) the entire class with all 0 bytes, regardless of
the actual type of the member variables. Think of value types as PODs
(plain old data, like a C struct). When a value type is copied, the CLR
is simply doing a memcpy on the underlying byte-content (as a raw
octet-stream). If this doesn't satisfy your goals, you must use a ref class.

Tom
Feb 16 '06 #8
"Peter Oliphant" <po*******@Roun dTripInc.com> wrote
I guess I then need the definition of 'special member functions'.
Special member functions are defined by the C++ standard.
These are:
- default constructor
- copy constructor
- copy assignment operator
- destructor
Based on what you've said, a copy constructor is a special member
function. But a constructor which, I guess, DOESN'T have as its only
parameter a pointer or reference to the same class type (i.e., isn't a
copy constructor) IS allowed. Why the destinction? Or, like I said, and
more importantly what defines a 'special member function' in contrast to
one that isn't 'special'?

The CLR doesn't have concept of copy construction during in ordinary
control flow.

Therefore, there's no way for the C++ compiler to emit information
that other language implementations will understand to implement the
C++ semantics. The language designers apparently figured that this
would cause confusion (and FWIW I disagree) and hence decided
not to allow special member functions. Only special member functions
are called implicitly by the compiler-generated code.

For instance,
// C++
value struct X {
X(){ /*..*/ }
X( const X%){/*..*/}
X% operator=(const X%){ /*...*/};
}

// C# client
void foo() {
X x; // doesn't invoke default ctor
new X[] ( 10 ); // doesn't invoke default ctor for elements
X y = x; // doesn't invoke copy ctor
y = x; // doesn't invoke copy assignment operator
} // doesn't invoke destructor for x or y

-hg
Feb 16 '06 #9
This is good. That's exactly how I personally think of as the 'natural' way
to default-fill data types one doesn't know anything about. So in this I am
happy! : )

[==P==]

"Tamas Demjen" <td*****@yahoo. com> wrote in message
news:uj******** ******@TK2MSFTN GP12.phx.gbl...
Peter Oliphant wrote:
How does the implicit parameterless (i.e., default) constructor determine
the values it gives it members?


By memset'ing (filling) the entire class with all 0 bytes, regardless of
the actual type of the member variables. Think of value types as PODs
(plain old data, like a C struct). When a value type is copied, the CLR is
simply doing a memcpy on the underlying byte-content (as a raw
octet-stream). If this doesn't satisfy your goals, you must use a ref
class.

Tom

Feb 17 '06 #10

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

Similar topics

4
1996
by: news.microsoft.com | last post by:
Hi, I am using structs and am also using property accessors to access those private member fields... TO me this is a good way of handling them, but I find alot of people using direct access to the struct memebers, since structs is just a type similar to a class (with differences I know) why should I allow direct access like that... I looked at the Size and other parts on Control etc and I find its the same way by using property...
4
1404
by: Peter Rilling | last post by:
Hi. Two of my biggest complaints about structure in c# is that 1) You cannot implement a default constructor and 2) You cannot initialize fields on the declaration line. I would like to know why this is. Is there some technical reason why C# choose not to allow you to do the above, or was that decision arbitrary?
2
1270
by: mario.demiguel | last post by:
Does the standard support structs have constructors?
12
2690
by: Edward Diener | last post by:
Given value class X { public: // Not allowed: X():i(100000),s(10000) { } // Allowed void InitializeDefaults() { i = 100000; s = 10000; } private: int i;
12
8974
by: Ole Nielsby | last post by:
Why is this? I've stumbled on this restriction more than once, and I'd like to know the philosophy behind it if there is one. I figure I'd be less prone to make this error if I knew the reason. Let me mention two cases where I wanted parameterless struct constructors but could not get them. 1st, I needed sortable identity stamps on certain classes of
7
2245
by: Markus Svilans | last post by:
Hi, What is the difference between having a struct with constructors and methods versus a class? In many C++ examples online I have seen code similar to this: struct Animal { Animal()
23
3648
by: Jess | last post by:
Hello, I understand the default-initialization happens if we don't initialize an object explicitly. I think for an object of a class type, the value is determined by the constructor, and for the built-in types, the value is usually garbage. Is this right? However, I'm a bit confused about value-initialization, when does it happen, and what kind of values are assigned to objects?
4
3702
by: Jess | last post by:
Hello, I tried several books to find out the details of object initialization. Unfortunately, I'm still confused by two specific concepts, namely default-initialization and value-initialization. I think default-init calls default constructor for class objects and sets garbage values to PODs. Value-init also calls default constructor for class objects and sets 0s to POD types. This is what I've learned from the books (especially...
43
3801
by: JohnQ | last post by:
Are a default constructor, destructor, copy constructor and assignment operator generated by the compiler for a struct if they are not explicitely defined? I think the answer is yes, because "there is no difference between a struct and a class except the public/private access specification" (and a few minor other things). When I create a class, I always start by declaring the default constructor, copy constructor and assignment operator...
0
8251
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8688
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8494
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7178
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6115
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5570
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4085
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4188
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1496
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.