473,404 Members | 2,179 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,404 software developers and data experts.

Structure vs Class Objects

If I have a structure like;

Public Structure myStructureDef
Public b() as Byte
Public t as String
End Structure

If I pass this structure, will the values in the array b be stored on the
stack or will just a pointer to the array be stored on the stack? I am
trying to decide whether to use Structures or Pointers. I know that M'soft
recommends to use a class if the length is over about 16 bytes but does this
include all the array elements or just pointers to the array?
--
Dennis in Houston
Apr 2 '06 #1
14 1754
Arrays and strings are both reference types, so they'll be allocated on the
GC heap. I think the 16 byte rule is just one guideline aimed at getting you
to consider whether you really want value type or reference type semantics.
E.g. if you pass myStructureDef to a method, you'll be passing a copy, which
includes a copy of the array and the string. If you assign one instance to
another, again you'll be assigning a copy rather than having both instances
reference the same data. If you find yourself passing myStructureDef
arguments ByRef alot then you should really consider using a reference type
instead. You should also think about how often myStructureDef will be boxed
in your core scenarios.

--
Kevin Westhead

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:15**********************************@microsof t.com...
If I have a structure like;

Public Structure myStructureDef
Public b() as Byte
Public t as String
End Structure

If I pass this structure, will the values in the array b be stored on the
stack or will just a pointer to the array be stored on the stack? I am
trying to decide whether to use Structures or Pointers. I know that
M'soft
recommends to use a class if the length is over about 16 bytes but does
this
include all the array elements or just pointers to the array?
--
Dennis in Houston

Apr 2 '06 #2
A reasoned response.

--
( OHM ) - One Handed Man
AKA Terry Burns - http://TrainingOn.net

"Kevin Westhead" <ma***********@nospam.nospam> wrote in message
news:uz**************@TK2MSFTNGP15.phx.gbl...
Arrays and strings are both reference types, so they'll be allocated on
the GC heap. I think the 16 byte rule is just one guideline aimed at
getting you to consider whether you really want value type or reference
type semantics. E.g. if you pass myStructureDef to a method, you'll be
passing a copy, which includes a copy of the array and the string. If you
assign one instance to another, again you'll be assigning a copy rather
than having both instances reference the same data. If you find yourself
passing myStructureDef arguments ByRef alot then you should really
consider using a reference type instead. You should also think about how
often myStructureDef will be boxed in your core scenarios.

--
Kevin Westhead

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:15**********************************@microsof t.com...
If I have a structure like;

Public Structure myStructureDef
Public b() as Byte
Public t as String
End Structure

If I pass this structure, will the values in the array b be stored on the
stack or will just a pointer to the array be stored on the stack? I am
trying to decide whether to use Structures or Pointers. I know that
M'soft
recommends to use a class if the length is over about 16 bytes but does
this
include all the array elements or just pointers to the array?
--
Dennis in Houston


Apr 2 '06 #3
Thanks for your clarification. Since I'm using very large arrays, I think I
will use Classses to avoid eating up memory even though I will have to make
several changes in my application.
--
Dennis in Houston
"Kevin Westhead" wrote:
Arrays and strings are both reference types, so they'll be allocated on the
GC heap. I think the 16 byte rule is just one guideline aimed at getting you
to consider whether you really want value type or reference type semantics.
E.g. if you pass myStructureDef to a method, you'll be passing a copy, which
includes a copy of the array and the string. If you assign one instance to
another, again you'll be assigning a copy rather than having both instances
reference the same data. If you find yourself passing myStructureDef
arguments ByRef alot then you should really consider using a reference type
instead. You should also think about how often myStructureDef will be boxed
in your core scenarios.

--
Kevin Westhead

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:15**********************************@microsof t.com...
If I have a structure like;

Public Structure myStructureDef
Public b() as Byte
Public t as String
End Structure

If I pass this structure, will the values in the array b be stored on the
stack or will just a pointer to the array be stored on the stack? I am
trying to decide whether to use Structures or Pointers. I know that
M'soft
recommends to use a class if the length is over about 16 bytes but does
this
include all the array elements or just pointers to the array?
--
Dennis in Houston


Apr 2 '06 #4
Dennis,

Is thinking about 16 Bytes really from this time.

Cor

"Dennis" <De****@discussions.microsoft.com> schreef in bericht
news:15**********************************@microsof t.com...
If I have a structure like;

Public Structure myStructureDef
Public b() as Byte
Public t as String
End Structure

If I pass this structure, will the values in the array b be stored on the
stack or will just a pointer to the array be stored on the stack? I am
trying to decide whether to use Structures or Pointers. I know that
M'soft
recommends to use a class if the length is over about 16 bytes but does
this
include all the array elements or just pointers to the array?
--
Dennis in Houston

Apr 2 '06 #5
Kevin,
| E.g. if you pass myStructureDef to a method, you'll be passing a copy,
which
| includes a copy of the array and the string.
As you stated, Arrays & Strings are reference types. The myStructureDef
structure contains a reference to the actual objects on the heap. Not a copy
of the actual object!

If you pass myStructureDef to a method you will be passing a copy of the
structure, which includes a copy of the *references* to the array & the
string objects. There will only be a single instance of the array & string
object on the heap!

Because Strings are immutable its hard to notice a difference. However
Arrays & most other reference types are mutable, consider the following:

Public Structure myStructureDef
Public i As Integer
Public b() As Byte
Public t As String
End Structure

Private Sub Something(ByVal parameter As myStructureDef)
parameter.i = 2
parameter.b(0) = 5
parameter.b(1) = 6
parameter.b(2) = 7
End Sub

Dim local As myStructureDef
local.b = New Byte() {1, 2, 3}
local.t = "Hello"
Something(local)

"parameter" will be a copy of the "local" myStructureDef, parameter.i is
inline in the structure as its a value type, so changing parameter.i does
not change local.i. However the array that parameter.b references is the
same array that local.b references, so changing an element of the array
"parameter.b(0) = 5" also changes "local.i". However changing the reference
itself, will change the reference itself "parameter.b = New Byte() {4, 5,
6}" will create a new array object on the heap, replacing the reference that
"parameter.b" is...
--
Hope this helps
Jay [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Kevin Westhead" <ma***********@nospam.nospam> wrote in message
news:uz**************@TK2MSFTNGP15.phx.gbl...
| Arrays and strings are both reference types, so they'll be allocated on
the
| GC heap. I think the 16 byte rule is just one guideline aimed at getting
you
| to consider whether you really want value type or reference type
semantics.
| E.g. if you pass myStructureDef to a method, you'll be passing a copy,
which
| includes a copy of the array and the string. If you assign one instance to
| another, again you'll be assigning a copy rather than having both
instances
| reference the same data. If you find yourself passing myStructureDef
| arguments ByRef alot then you should really consider using a reference
type
| instead. You should also think about how often myStructureDef will be
boxed
| in your core scenarios.
|
| --
| Kevin Westhead
|
| "Dennis" <De****@discussions.microsoft.com> wrote in message
| news:15**********************************@microsof t.com...
| > If I have a structure like;
| >
| > Public Structure myStructureDef
| > Public b() as Byte
| > Public t as String
| > End Structure
| >
| > If I pass this structure, will the values in the array b be stored on
the
| > stack or will just a pointer to the array be stored on the stack? I am
| > trying to decide whether to use Structures or Pointers. I know that
| > M'soft
| > recommends to use a class if the length is over about 16 bytes but does
| > this
| > include all the array elements or just pointers to the array?
| > --
| > Dennis in Houston
|
|
Apr 2 '06 #6
"Cor Ligthert [MVP]" <no************@planet.nl> schrieb:
Is thinking about 16 Bytes really from this time.


It's a Microsoft recommendation that definitely makes sense.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Apr 2 '06 #7
> E.g. if you pass myStructureDef to a method, you'll be passing a copy, which
includes a copy of the array and the string. If you assign one instance to
another, again you'll be assigning a copy rather than having both instances
reference the same data.


What? I agree that if you pass a myStructureDef to a method, you will pass
a copy of the structure, but it will contain a copy of a reference to b. A
new reference to b will be created, not a new copy of the entire array b as
is imiplied by your phrase "which includes a copy of the array and the
string". Similarly, if you assign one instance of myStructureDef to another,
you will have two references to the same b array.

Consider this:

Public Sub Test(ByVal z As myStructureDef)
z.b(1) = CByte(z.b(1) + 1)
z.t &= "x"
End Sub

Dim z, w As myStructureDef
ReDim z.b(3)
z.t = "aaa"
Test(z)
w = z
Test(z)

At the end of these operations, z.b(1) and w.b(1) are both 2 because both z
and w refer to the same array object. On the other hand, because strings are
immutable, and becuase z was passed by value to Test(), z.t and w.t are both
their original value, namely "aaa". Change the sub to byref, and the
behavior of b() will be unchanged, but the behavior of t will be different.

Apr 2 '06 #8
Herfried,

It's a Microsoft recommendation that definitely makes sense.

Do you have a real world example for me?
(With as it is possible the advantages in figers of whole seconds and parts
of 1Mb memory.)

All figurs below this quantaties has no sense because I can also not have
influence if the framework 2.1 will be not 1Mb larger than the current
version.

Cor
Apr 2 '06 #9
"Cor Ligthert [MVP]" <no************@planet.nl> schrieb:
It's a Microsoft recommendation that definitely makes sense.


Do you have a real world example for me?


Sorry, but there must be a set of criteria to base the decision whether to
use classes or structures on. Otherwise some people would only use
structures and others would never use structures. In other words, that's
the reason why 'Point' is a structure and 'Form' isn't.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Apr 2 '06 #10
Herfried,

All decisions should be seen for me in relation to the time that they were
taken.

I can only see this as a reason if it should be used on computers with a
very low amount of memory. Than it is for me a valid criteria.

Just my thought,

Cor
"Herfried K. Wagner [MVP]" <hi***************@gmx.at> schreef in bericht
news:uc**************@TK2MSFTNGP10.phx.gbl...
"Cor Ligthert [MVP]" <no************@planet.nl> schrieb:
It's a Microsoft recommendation that definitely makes sense.


Do you have a real world example for me?


Sorry, but there must be a set of criteria to base the decision whether to
use classes or structures on. Otherwise some people would only use
structures and others would never use structures. In other words, that's
the reason why 'Point' is a structure and 'Form' isn't.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Apr 2 '06 #11
Doh! typo

| However the array that parameter.b references is the
| same array that local.b references, so changing an element of the array
| "parameter.b(0) = 5" also changes "local.i".

Should be:

"parameter.b(0) = 5" also changes "local.b(0)".

--
Hope this helps
Jay [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Jay B. Harlow [MVP - Outlook]" <Ja************@tsbradley.net> wrote in
message news:%2****************@TK2MSFTNGP14.phx.gbl...
| Kevin,
|| E.g. if you pass myStructureDef to a method, you'll be passing a copy,
| which
|| includes a copy of the array and the string.
| As you stated, Arrays & Strings are reference types. The myStructureDef
| structure contains a reference to the actual objects on the heap. Not a
copy
| of the actual object!
|
| If you pass myStructureDef to a method you will be passing a copy of the
| structure, which includes a copy of the *references* to the array & the
| string objects. There will only be a single instance of the array &
string
| object on the heap!
|
| Because Strings are immutable its hard to notice a difference. However
| Arrays & most other reference types are mutable, consider the following:
|
| Public Structure myStructureDef
| Public i As Integer
| Public b() As Byte
| Public t As String
| End Structure
|
| Private Sub Something(ByVal parameter As myStructureDef)
| parameter.i = 2
| parameter.b(0) = 5
| parameter.b(1) = 6
| parameter.b(2) = 7
| End Sub
|
| Dim local As myStructureDef
| local.b = New Byte() {1, 2, 3}
| local.t = "Hello"
| Something(local)
|
| "parameter" will be a copy of the "local" myStructureDef, parameter.i is
| inline in the structure as its a value type, so changing parameter.i does
| not change local.i. However the array that parameter.b references is the
| same array that local.b references, so changing an element of the array
| "parameter.b(0) = 5" also changes "local.i". However changing the
reference
| itself, will change the reference itself "parameter.b = New Byte() {4, 5,
| 6}" will create a new array object on the heap, replacing the reference
that
| "parameter.b" is...
|
|
| --
| Hope this helps
| Jay [MVP - Outlook]
| .NET Application Architect, Enthusiast, & Evangelist
| T.S. Bradley - http://www.tsbradley.net
|
|
| "Kevin Westhead" <ma***********@nospam.nospam> wrote in message
| news:uz**************@TK2MSFTNGP15.phx.gbl...
|| Arrays and strings are both reference types, so they'll be allocated on
| the
|| GC heap. I think the 16 byte rule is just one guideline aimed at getting
| you
|| to consider whether you really want value type or reference type
| semantics.
|| E.g. if you pass myStructureDef to a method, you'll be passing a copy,
| which
|| includes a copy of the array and the string. If you assign one instance
to
|| another, again you'll be assigning a copy rather than having both
| instances
|| reference the same data. If you find yourself passing myStructureDef
|| arguments ByRef alot then you should really consider using a reference
| type
|| instead. You should also think about how often myStructureDef will be
| boxed
|| in your core scenarios.
||
|| --
|| Kevin Westhead
||
|| "Dennis" <De****@discussions.microsoft.com> wrote in message
|| news:15**********************************@microsof t.com...
|| > If I have a structure like;
|| >
|| > Public Structure myStructureDef
|| > Public b() as Byte
|| > Public t as String
|| > End Structure
|| >
|| > If I pass this structure, will the values in the array b be stored on
| the
|| > stack or will just a pointer to the array be stored on the stack? I am
|| > trying to decide whether to use Structures or Pointers. I know that
|| > M'soft
|| > recommends to use a class if the length is over about 16 bytes but does
|| > this
|| > include all the array elements or just pointers to the array?
|| > --
|| > Dennis in Houston
||
||
|
|
Apr 2 '06 #12
Kevin,Jay - as a test, I did the following:

'In my Main Program
Public Structure myStruct
Public b As Byte()
Public s As String
End Structure
Dim st As myStruct
ReDim st.b(3)
st.b(0) = 1 : st.b(1) = 2 : st.b(2) = 3
st.s = "Original String"
Something(st)
'Break here and check values of st which were, st.s=Original String,
st.b(0)=25, st.b(1)=30, st.b(2)=35

Private Sub Something(ByVal c() As Byte)
st.s = "New String"
st.b(0) = 25: st.b(1) = 30: st.b(2) = 35
End Sub

It is obvious that that only a reference to the array object is stored in
the structure and that is what is passed. Of course the string wasn't
changed since it's immutable (whatever that means).
--
Dennis in Houston
"Jay B. Harlow [MVP - Outlook]" wrote:
Doh! typo

| However the array that parameter.b references is the
| same array that local.b references, so changing an element of the array
| "parameter.b(0) = 5" also changes "local.i".

Should be:

"parameter.b(0) = 5" also changes "local.b(0)".

--
Hope this helps
Jay [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Jay B. Harlow [MVP - Outlook]" <Ja************@tsbradley.net> wrote in
message news:%2****************@TK2MSFTNGP14.phx.gbl...
| Kevin,
|| E.g. if you pass myStructureDef to a method, you'll be passing a copy,
| which
|| includes a copy of the array and the string.
| As you stated, Arrays & Strings are reference types. The myStructureDef
| structure contains a reference to the actual objects on the heap. Not a
copy
| of the actual object!
|
| If you pass myStructureDef to a method you will be passing a copy of the
| structure, which includes a copy of the *references* to the array & the
| string objects. There will only be a single instance of the array &
string
| object on the heap!
|
| Because Strings are immutable its hard to notice a difference. However
| Arrays & most other reference types are mutable, consider the following:
|
| Public Structure myStructureDef
| Public i As Integer
| Public b() As Byte
| Public t As String
| End Structure
|
| Private Sub Something(ByVal parameter As myStructureDef)
| parameter.i = 2
| parameter.b(0) = 5
| parameter.b(1) = 6
| parameter.b(2) = 7
| End Sub
|
| Dim local As myStructureDef
| local.b = New Byte() {1, 2, 3}
| local.t = "Hello"
| Something(local)
|
| "parameter" will be a copy of the "local" myStructureDef, parameter.i is
| inline in the structure as its a value type, so changing parameter.i does
| not change local.i. However the array that parameter.b references is the
| same array that local.b references, so changing an element of the array
| "parameter.b(0) = 5" also changes "local.i". However changing the
reference
| itself, will change the reference itself "parameter.b = New Byte() {4, 5,
| 6}" will create a new array object on the heap, replacing the reference
that
| "parameter.b" is...
|
|
| --
| Hope this helps
| Jay [MVP - Outlook]
| .NET Application Architect, Enthusiast, & Evangelist
| T.S. Bradley - http://www.tsbradley.net
|
|
| "Kevin Westhead" <ma***********@nospam.nospam> wrote in message
| news:uz**************@TK2MSFTNGP15.phx.gbl...
|| Arrays and strings are both reference types, so they'll be allocated on
| the
|| GC heap. I think the 16 byte rule is just one guideline aimed at getting
| you
|| to consider whether you really want value type or reference type
| semantics.
|| E.g. if you pass myStructureDef to a method, you'll be passing a copy,
| which
|| includes a copy of the array and the string. If you assign one instance
to
|| another, again you'll be assigning a copy rather than having both
| instances
|| reference the same data. If you find yourself passing myStructureDef
|| arguments ByRef alot then you should really consider using a reference
| type
|| instead. You should also think about how often myStructureDef will be
| boxed
|| in your core scenarios.
||
|| --
|| Kevin Westhead
||
|| "Dennis" <De****@discussions.microsoft.com> wrote in message
|| news:15**********************************@microsof t.com...
|| > If I have a structure like;
|| >
|| > Public Structure myStructureDef
|| > Public b() as Byte
|| > Public t as String
|| > End Structure
|| >
|| > If I pass this structure, will the values in the array b be stored on
| the
|| > stack or will just a pointer to the array be stored on the stack? I am
|| > trying to decide whether to use Structures or Pointers. I know that
|| > M'soft
|| > recommends to use a class if the length is over about 16 bytes but does
|| > this
|| > include all the array elements or just pointers to the array?
|| > --
|| > Dennis in Houston
||
||
|
|

Apr 2 '06 #13
Point has a direct counterpart in the Win32 API. Making it a structure
parallels the Win32 API.

From the Windows GDI SDK:

POINT

The POINT structure defines the x- and y- coordinates of a point.
typedef struct tagPOINT {
LONG x;
LONG y;
} POINT, *PPOINT;

Members
x Specifies the x-coordinate of the point.
y Specifies the y-coordinate of the point.

Requirements
Windows NT/2000/XP: Included in Windows NT 3.1 and later.
Windows 95/98/Me: Included in Windows 95 and later.
Header: Declared in Windef.h; include Windows.h.
Mike Ober.

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:uc**************@TK2MSFTNGP10.phx.gbl...
"Cor Ligthert [MVP]" <no************@planet.nl> schrieb:
It's a Microsoft recommendation that definitely makes sense.


Do you have a real world example for me?


Sorry, but there must be a set of criteria to base the decision whether to
use classes or structures on. Otherwise some people would only use
structures and others would never use structures. In other words, that's
the reason why 'Point' is a structure and 'Form' isn't.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>


Apr 3 '06 #14
Dennis,
| It is obvious that that only a reference to the array object is stored in
| the structure and that is what is passed.
Yes! I believe that is what I stated.

| Of course the string wasn't
| changed since it's immutable (whatever that means).
You changed a reference to the string, you did not change the string.

Immutable means that the object itself is unchangeable (not modifiable).

--
Hope this helps
Jay [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:62**********************************@microsof t.com...
| Kevin,Jay - as a test, I did the following:
|
| 'In my Main Program
| Public Structure myStruct
| Public b As Byte()
| Public s As String
| End Structure
| Dim st As myStruct
| ReDim st.b(3)
| st.b(0) = 1 : st.b(1) = 2 : st.b(2) = 3
| st.s = "Original String"
| Something(st)
| 'Break here and check values of st which were, st.s=Original String,
| st.b(0)=25, st.b(1)=30, st.b(2)=35
|
| Private Sub Something(ByVal c() As Byte)
| st.s = "New String"
| st.b(0) = 25: st.b(1) = 30: st.b(2) = 35
| End Sub
|
| It is obvious that that only a reference to the array object is stored in
| the structure and that is what is passed. Of course the string wasn't
| changed since it's immutable (whatever that means).
| --
| Dennis in Houston
|
|
| "Jay B. Harlow [MVP - Outlook]" wrote:
|
| > Doh! typo
| >
| > | However the array that parameter.b references is the
| > | same array that local.b references, so changing an element of the
array
| > | "parameter.b(0) = 5" also changes "local.i".
| >
| > Should be:
| >
| > "parameter.b(0) = 5" also changes "local.b(0)".
| >
| > --
| > Hope this helps
| > Jay [MVP - Outlook]
| > ..NET Application Architect, Enthusiast, & Evangelist
| > T.S. Bradley - http://www.tsbradley.net
| >
| >
| > "Jay B. Harlow [MVP - Outlook]" <Ja************@tsbradley.net> wrote in
| > message news:%2****************@TK2MSFTNGP14.phx.gbl...
| > | Kevin,
| > || E.g. if you pass myStructureDef to a method, you'll be passing a
copy,
| > | which
| > || includes a copy of the array and the string.
| > | As you stated, Arrays & Strings are reference types. The
myStructureDef
| > | structure contains a reference to the actual objects on the heap. Not
a
| > copy
| > | of the actual object!
| > |
| > | If you pass myStructureDef to a method you will be passing a copy of
the
| > | structure, which includes a copy of the *references* to the array &
the
| > | string objects. There will only be a single instance of the array &
| > string
| > | object on the heap!
| > |
| > | Because Strings are immutable its hard to notice a difference. However
| > | Arrays & most other reference types are mutable, consider the
following:
| > |
| > | Public Structure myStructureDef
| > | Public i As Integer
| > | Public b() As Byte
| > | Public t As String
| > | End Structure
| > |
| > | Private Sub Something(ByVal parameter As myStructureDef)
| > | parameter.i = 2
| > | parameter.b(0) = 5
| > | parameter.b(1) = 6
| > | parameter.b(2) = 7
| > | End Sub
| > |
| > | Dim local As myStructureDef
| > | local.b = New Byte() {1, 2, 3}
| > | local.t = "Hello"
| > | Something(local)
| > |
| > | "parameter" will be a copy of the "local" myStructureDef, parameter.i
is
| > | inline in the structure as its a value type, so changing parameter.i
does
| > | not change local.i. However the array that parameter.b references is
the
| > | same array that local.b references, so changing an element of the
array
| > | "parameter.b(0) = 5" also changes "local.i". However changing the
| > reference
| > | itself, will change the reference itself "parameter.b = New Byte() {4,
5,
| > | 6}" will create a new array object on the heap, replacing the
reference
| > that
| > | "parameter.b" is...
| > |
| > |
| > | --
| > | Hope this helps
| > | Jay [MVP - Outlook]
| > | .NET Application Architect, Enthusiast, & Evangelist
| > | T.S. Bradley - http://www.tsbradley.net
| > |
| > |
| > | "Kevin Westhead" <ma***********@nospam.nospam> wrote in message
| > | news:uz**************@TK2MSFTNGP15.phx.gbl...
| > || Arrays and strings are both reference types, so they'll be allocated
on
| > | the
| > || GC heap. I think the 16 byte rule is just one guideline aimed at
getting
| > | you
| > || to consider whether you really want value type or reference type
| > | semantics.
| > || E.g. if you pass myStructureDef to a method, you'll be passing a
copy,
| > | which
| > || includes a copy of the array and the string. If you assign one
instance
| > to
| > || another, again you'll be assigning a copy rather than having both
| > | instances
| > || reference the same data. If you find yourself passing myStructureDef
| > || arguments ByRef alot then you should really consider using a
reference
| > | type
| > || instead. You should also think about how often myStructureDef will be
| > | boxed
| > || in your core scenarios.
| > ||
| > || --
| > || Kevin Westhead
| > ||
| > || "Dennis" <De****@discussions.microsoft.com> wrote in message
| > || news:15**********************************@microsof t.com...
| > || > If I have a structure like;
| > || >
| > || > Public Structure myStructureDef
| > || > Public b() as Byte
| > || > Public t as String
| > || > End Structure
| > || >
| > || > If I pass this structure, will the values in the array b be stored
on
| > | the
| > || > stack or will just a pointer to the array be stored on the stack?
I am
| > || > trying to decide whether to use Structures or Pointers. I know
that
| > || > M'soft
| > || > recommends to use a class if the length is over about 16 bytes but
does
| > || > this
| > || > include all the array elements or just pointers to the array?
| > || > --
| > || > Dennis in Houston
| > ||
| > ||
| > |
| > |
| >
| >
| >
Apr 3 '06 #15

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

Similar topics

1
by: Victor Hannak | last post by:
I have two classes derived from a base class. The two derived classes each utilize a structure that is slightly different from one another. i.e. DerivedClass1: struct NodeStruct { float...
4
by: Albert Yan Qing Ge | last post by:
typedef struct AA { } A; when use gcc compiles, sizeof(A) is 0 when use g++ compiles, sizeof(A) is 1 So I can known the length of this pointer is 1 but when I add one member to the...
7
by: Adam | last post by:
Hi all, In my VB.NET code below, I try to change the user name in my arraylist from Ted to Bob, but instead it adds a new user to the arraylist named Bob. Can anyone explain why this happens and...
3
by: dan heskett | last post by:
Hello group, I am trying to get used to vb.net coming from a far far far away set of tools. What i want to do is setup an object in my application that contains other object types, that act...
15
by: Charles Law | last post by:
I have adapted the following code from the MSDN help for PropertyInfo SetValue. In the original code, the structure MyStructure is defined as a class MyProperty, and it works as expected. There is...
6
by: JSheble | last post by:
Are there any reasons why I shouldn't or couldn't use a structure as a property in a class? Specifically since structures are value types and objects are reference types? I have a Shipping...
12
by: Sam Kong | last post by:
Hi, JavaScript hides its memory structure. I know that numbers, booleans, null and undefined are value types (value is directed saved in a variable). I want to know: - How JavaScript...
11
by: JerryWEC | last post by:
I want to be able to create a structure like I did in VB6, that have variables Name As String * 10 Age As String * 3 for the size of the strings. Can I do this some way in VB.net? I'm...
10
by: Scott Townsend | last post by:
So I need to talk to a devices that expects all of the bits and bytes I sent it to be in specific places (not yet 100% defined). I wanted to create a structure/class with all of the data in it...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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
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
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
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...

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.