473,782 Members | 2,396 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Memory required to create instances of a Class

Public Class User
Private _id, _P, _L, _R As Integer
Private _balance As Int64
Private _name, _family, _tel1, _tel2, _mobile, _city, _accountNumber As
String
Private _password, _email, _ficheNumber, _postalAddress As String
Private _province, _bank As String
Private _isSpecial, _photo As Boolean
Public stk As New Stack

..
..
Properties and Functions
..
..
..
End Class

How can I calculate how much memory I need to create an instance of such
class?
Is it the sum of bits required for variables? 32+32+32+32+64+ ...
What about Strings and Stack?

TIA

--
Saber S.
http://maghalat.com
Nov 21 '05 #1
2 1305

"Saber" <saber[.AT.]oxin.ir> wrote in message
news:OP******** *****@TK2MSFTNG P09.phx.gbl...
Public Class User
Private _id, _P, _L, _R As Integer
Private _balance As Int64
Private _name, _family, _tel1, _tel2, _mobile, _city, _accountNumber As
String
Private _password, _email, _ficheNumber, _postalAddress As String
Private _province, _bank As String
Private _isSpecial, _photo As Boolean
Public stk As New Stack

.
.
Properties and Functions
.
.
.
End Class

How can I calculate how much memory I need to create an instance of such
class?
Is it the sum of bits required for variables? 32+32+32+32+64+ ... Value Types (Integer, Int64, Boolean) have known sizes.
What about Strings and Stack?

They are IntPtr-sized pointers to heap locations. And there is no mechanism
to determine exactly how much space they take on the heap because there's
nothing you could usefully do with this information.

Take "stk as New Stack". stk references a heap location; at that heap
location is a Stack instance. A Stack is a mix of integral fields and
pointers to objects which a are a mix of fields and pointers, etc. Moreover
multiple Use instances can share the same _name, _tel1, or stk. So even if
you could determine the size of reference types, you have to subtract out
shared instances when adding sizes together.

That being said, it's sometimes still important to have an approximation of
the memory allocation size for performance analysis. You can get an
estimate of the size by recursing the object graph and adding field sizes,
excluding reference types which are shared among instances.

Field Type - approximate size
--------------------------------
IntPtr - 4 bytes on 32bit, 8 bytes on 64bit
Integer - 4 bytes
Char - 2 bytes
String ~ IntPtr + sizeof(Integer) + sizeof(char) * length + C (but literal
strings are "interned" and shared among instances)
Stack ~ IntPtr + 2*sizeof(Intege r) + sizeof(IntPtr) * length * 1.2 + C

David


Nov 21 '05 #2
Thanks David,
It was useful for me.

--
Saber S.
http://maghalat.com
"David Browne" <davidbaxterbro wne no potted me**@hotmail.co m> wrote in
message news:ul******** ******@TK2MSFTN GP11.phx.gbl...

"Saber" <saber[.AT.]oxin.ir> wrote in message
news:OP******** *****@TK2MSFTNG P09.phx.gbl...
Public Class User
Private _id, _P, _L, _R As Integer
Private _balance As Int64
Private _name, _family, _tel1, _tel2, _mobile, _city, _accountNumber As
String
Private _password, _email, _ficheNumber, _postalAddress As String
Private _province, _bank As String
Private _isSpecial, _photo As Boolean
Public stk As New Stack

.
.
Properties and Functions
.
.
.
End Class

How can I calculate how much memory I need to create an instance of such
class?
Is it the sum of bits required for variables? 32+32+32+32+64+ ...

Value Types (Integer, Int64, Boolean) have known sizes.
What about Strings and Stack?

They are IntPtr-sized pointers to heap locations. And there is no
mechanism to determine exactly how much space they take on the heap
because there's nothing you could usefully do with this information.

Take "stk as New Stack". stk references a heap location; at that heap
location is a Stack instance. A Stack is a mix of integral fields and
pointers to objects which a are a mix of fields and pointers, etc.
Moreover multiple Use instances can share the same _name, _tel1, or stk.
So even if you could determine the size of reference types, you have to
subtract out shared instances when adding sizes together.

That being said, it's sometimes still important to have an approximation
of the memory allocation size for performance analysis. You can get an
estimate of the size by recursing the object graph and adding field sizes,
excluding reference types which are shared among instances.

Field Type - approximate size
--------------------------------
IntPtr - 4 bytes on 32bit, 8 bytes on 64bit
Integer - 4 bytes
Char - 2 bytes
String ~ IntPtr + sizeof(Integer) + sizeof(char) * length + C (but literal
strings are "interned" and shared among instances)
Stack ~ IntPtr + 2*sizeof(Intege r) + sizeof(IntPtr) * length * 1.2 + C

David

Nov 21 '05 #3

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

Similar topics

25
2388
by: Zeng | last post by:
I finally narrowed down my code to this situation, quite a few (not all) of my CMyClass objects got hold up after each run of this function via the simple webpage that shows NumberEd editbox. My memory profile shows that those instances survive 3 rounds of GC collections - it's not what I expected. In my real code, CMyClass occupies big amount of memory and they all share one stance of another class that I don't have enough memory hold...
22
1394
by: Zeng | last post by:
I finally narrowed down my code to this situation, quite a few (not all) of my CMyClass objects got hold up after each run of this function via the simple webpage that shows NumberEd editbox. My memory profile shows that those instances survive 3 rounds of GC collections - it's not what I expected. In my real code, CMyClass occupies big amount of memory and they all share one stance of another class that I don't have enough memory hold...
8
8554
by: Adrian | last post by:
Hi I have a JS program that runs localy (under IE6 only) on a PC but it has a memory leak (probably the known MS one!) What applications are there that I could use to look at the memory usage of each object within my JS app to help locate my problem? Thanks
0
9641
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
10313
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
10146
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9944
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...
1
7494
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
6735
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
5378
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...
2
3643
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2875
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.