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

SmartPointer & Inheritance & Explicit Constructors

Thanks everyone again for contributing to helping me clear C++
confusions. I did some serious reading on copy constructors and
assignments and I think I've got a good handle on the memory stuff.

Well, I came across Scott Meyer's SmartPtr example from some 10 years
ago. I like the template member function for type conversion to solve
inheritance issues.

On MSVS 2003, I get the below error, if I declare the constructor
SmartPtr(T* realPtr = 0); as explicit, ie.

explicit SmartPtr(T* realPtr = 0);
SmartPtr.h(33): error C2520: SmartPtr<T>::SmartPtr: no non-explicit
constructor available for implicit conversion
with
[
T=Object
]
and
[
T=Object
]
I think of explicit as an "insurance" against silly mistakes. Is
there a way to solve the issue and keep explicit?

Thanks...

=== Scott Meyer's===
template<class T// template class for smart
class SmartPtr { // pointers-to-T objects
public:
SmartPtr(T* realPtr = 0);
T* operator->() const;
T& operator*() const;
template<class newType// template function for
operator SmartPtr<newType>() // implicit conversion ops.
{
return SmartPtr<newType>(pointee);
}

May 30 '07 #1
42 2634
co*******@yahoo.com wrote:
Well, I came across Scott Meyer's SmartPtr example from some 10 years
ago. I like the template member function for type conversion to solve
inheritance issues.
As smart pointers are a rudimentary precursor of garbage collection, you
might consider a full-blown garbage collector or a garbage collected
language. There is really no need to battle "inheritance issues" any more.

--
Dr Jon D Harrop, Flying Frog Consultancy
OCaml for Scientists
http://www.ffconsultancy.com/product...ntists/?usenet
May 30 '07 #2
On May 30, 4:33 pm, Jon Harrop <j...@ffconsultancy.comwrote:
coder_...@yahoo.com wrote:
Well, I came across Scott Meyer's SmartPtr example from some 10 years
ago. I like the template member function for type conversion to solve
inheritance issues.
As smart pointers are a rudimentary precursor of garbage collection, you
might consider a full-blown garbage collector or a garbage collected
language.
It depends on what the smart pointers are used for. I normally
use the Boehm collector for new projects, but I still use smart
pointers in some cases: to manage locks, for example, or to
manage ownership between threads. In the past, I've also used
them for simplified transaction management, and manually managed
object paging (keeping most of the objects physically on disk,
and not in memory).

Obviously, it's stupid not to use the Boehm collector when you
can, but just as obviously, it's not a silver bullet, and can
only replace those smart pointers which were being used
exclusively for memory management.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

May 31 '07 #3
James Kanze wrote:
....
Obviously, it's stupid not to use the Boehm collector when you
can,
I have found that using smart pointers is almost all that is needed to
develop a leak free application. The circular pointers issue is
normally very easy to design around.
... but just as obviously, it's not a silver bullet, and can
only replace those smart pointers which were being used
exclusively for memory management.
Jun 1 '07 #4
On Jun 1, 10:29 am, Gianni Mariani <gi3nos...@mariani.wswrote:
James Kanze wrote:
...
Obviously, it's stupid not to use the Boehm collector when you
can,
I have found that using smart pointers is almost all that is needed to
develop a leak free application. The circular pointers issue is
normally very easy to design around.
If you can't implement an application that works without garbage
collection, you won't be able to implement one with. In the old
days, I've even implemented complex applications fully in
assembler.

On the other hand, it's a lot less work if you have the
appropriate tools. Garbage collection reduces the amount of
code I have to write, and so reduces how much it costs to
develop the working application. Given that the Boehm collector
is readily available and easy to use, it would be stupid not to
use it when you can. (I don't use assembler today, either,
unless I have to.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 1 '07 #5
Using a refcount smart pointer, can you show me an actual code example
of when a circular dependency is created? Yeah, I figure A->B and B-
>A, but I'd appreciate if you could share actual code samples.
Thanks,

On Jun 1, 1:29 am, Gianni Mariani <gi3nos...@mariani.wswrote:
James Kanze wrote:

...
Obviously, it's stupid not to use the Boehm collector when you
can,

I have found that using smart pointers is almost all that is needed to
develop a leak free application. The circular pointers issue is
normally very easy to design around.
... but just as obviously, it's not a silver bullet, and can
only replace those smart pointers which were being used
exclusively for memory management.- Hide quoted text -

- Show quoted text -

Jun 9 '07 #6
How well does BOEHM work in an embedded environment? I have to port
substantial amount of J2ME applications to another C/C++ embedded
environment. Based on my study, I figure that RefCount smart pointers
and proper use of assignment operator and copy constructor will
essentially give me the a pseudo Java "reference" / garbage collection
programming model.

I scanned BOEHM briefly and it is very interesting that you don't need
to modify your code to employ it, but how does it work in an embedded
environment esp. single-threaded embedded env.

Thanks...

On Jun 1, 7:11 am, James Kanze <james.ka...@gmail.comwrote:
On Jun 1, 10:29 am, Gianni Mariani <gi3nos...@mariani.wswrote:
James Kanze wrote:
...
Obviously, it's stupid not to use the Boehm collector when you
can,
I have found that using smart pointers is almost all that is needed to
develop a leak free application. The circular pointers issue is
normally very easy to design around.

If you can't implement an application that works without garbage
collection, you won't be able to implement one with. In the old
days, I've even implemented complex applications fully in
assembler.

On the other hand, it's a lot less work if you have the
appropriate tools. Garbage collection reduces the amount of
code I have to write, and so reduces how much it costs to
develop the working application. Given that the Boehm collector
is readily available and easy to use, it would be stupid not to
use it when you can. (I don't use assembler today, either,
unless I have to.)

--
James Kanze (GABI Software) email:james.ka...@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 9 '07 #7
James Kanze wrote:
.... Given that the Boehm collector
is readily available and easy to use, it would be stupid not to
use it ...
Are you meaning to suggest that the Boehm collector will perform without
any issues perfectly every time, no side effects, just peachy even ?
Jun 9 '07 #8
co*******@yahoo.com wrote:
Using a refcount smart pointer, can you show me an actual code example
of when a circular dependency is created? Yeah, I figure A->B and B->A,
but I'd appreciate if you could share actual code samples.
Networks usually are hard to implement because any object can point to
any other object. One of my first applications using reference counted
objects, I had identified that this might happen (seldom but did happen)
and a secondary method to clean up those objects were needed. Objects
were given a lifetime handle and when it was determined that the life of
all the objects of that network were done with, regardless of the
reference count, all the objects removed themselves from the network
which then automatically deleted themselves because their reference
count went to zero. Today I'd consider using a garbage collector on
code like that.

Most of my applications since then have not been anywhere near as
complex from a lifetime management point of view and judicious use of
reference counting smart pointers eliminated all (yes - all) issues with
resource leaks. The most recent project I worked on came to life with
no memory leaks (a few handle leaks tho) to the astonishment of many of
the old timer engrs.

Garbage collection is not free, it can be somewhat expensive in compute
resources. For short lived applications, it may be better since it is
likely that the collector never runs. For long running applications, it
can introduce unwanted timing issues.

I have no used the Bohem collector, I hope it becomes a standard feature
personally but I also would not support it becoming a mandatory
requirement for all C++ code.
Jun 9 '07 #9
co*******@yahoo.com wrote:
I scanned BOEHM briefly and it is very interesting that you don't need
to modify your code to employ it
You do need to modify your code if you hide pointers (e.g. as ints). Also,
Boehm is unreliable or "conservative". You're much better off using a real
GC.

--
Dr Jon D Harrop, Flying Frog Consultancy
OCaml for Scientists
http://www.ffconsultancy.com/product...ntists/?usenet
Jun 9 '07 #10
On Jun 9, 9:40 am, coder_...@yahoo.com wrote:
How well does BOEHM work in an embedded environment? I have
to port substantial amount of J2ME applications to another
C/C++ embedded environment. Based on my study, I figure that
RefCount smart pointers and proper use of assignment operator
and copy constructor will essentially give me the a pseudo
Java "reference" / garbage collection programming model.
It depends really on the embedded environment. I'm tempted to
say that it works about as well as ref. counted smart
pointers:-). But that's probably because all of my experience
in embedded environments has been hard real time applications,
where no dynamic memory allocation was allowed.

Generally, the Boehm collector will require more memory than
manually allocating and deleting. (In most cases, to judge from
my experience, it will also be a little bit faster.)
I scanned BOEHM briefly and it is very interesting that you
don't need to modify your code to employ it, but how does it
work in an embedded environment esp. single-threaded embedded
env.
I suspect that there are two elements that you have to consider:
it typically does require more memory than manual allocation,
and if memory is tight, it might not be the ideal solution. And
at least in the configurations I've used, it doesn't give any
hard real time guarantees (but then, neither does malloc/free,
and I've had serious problems with the latency of malloc in the
past).

One final consideration: the Boehm collector has been ported to
Windows and to most mainstream Unix environments. If you're
target machine isn't one of those (and watch out for modified
versions of Linux), then you may have to port it yourself. I've
never done that, but I can imagine that it's not necessarily
trivial.

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 9 '07 #11
On Jun 9, 9:58 am, Gianni Mariani <gi3nos...@mariani.wswrote:
James Kanze wrote:
... Given that the Boehm collector
is readily available and easy to use, it would be stupid not to
use it ...
Are you meaning to suggest that the Boehm collector will
perform without any issues perfectly every time, no side
effects, just peachy even ?
It's not a silver bullet, if that's what you're asking. On
typical systems to which it has been ported (I've used it under
Solaris and Linux), it works without problems, resulting in
faster programs at less work from the programmer.

I'm not sure what you mean by "side effects", however.

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 9 '07 #12
On Jun 9, 9:37 am, coder_...@yahoo.com wrote:
Using a refcount smart pointer, can you show me an actual code
example of when a circular dependency is created? Yeah, I
figure A->B and B-A, but I'd appreciate if you could share
actual code samples.
A dual linked list. Many tree structures. Any time
bidirectional navigation is required, in fact.

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 9 '07 #13
On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:
Most of my applications since then have not been anywhere near as
complex from a lifetime management point of view and judicious use of
reference counting smart pointers eliminated all (yes - all) issues with
resource leaks. The most recent project I worked on came to life with
no memory leaks (a few handle leaks tho) to the astonishment of many of
the old timer engrs.
I'd say that this is actually fairly typical. The key word
above being "judicious". With garbage collection, there are
many cases where you don't even have to think about it. Doing
it right without garbage collection is far from impossible, but
doing it right with garbage collection is less work.
Garbage collection is not free, it can be somewhat expensive
in compute resources.
Which explains why programs using garbage collection are
typically faster than those without.
For short lived applications, it may be better since it is
likely that the collector never runs. For long running
applications, it can introduce unwanted timing issues.
That depends on the collector used. There are collectors which
give hard real-time guarantees (which malloc and free typically
don't); I've never needed one, however, so I don't know much
more than that they exist. A good incremental collector,
however, will generally not cause any problems, and it's usually
easier to tune the application (by explicitly collecting when
the system is otherwise idle, for example) with a collector than
with manual management. Of course, this depends at least
partially on memory use patterns; programs with lots of small,
short-lived allocations generally run faster with the garbage
collector; programs with very few, very long lived allocations
run slower.

The main cost of the Boehm collector is in total memory usage,
and at least at times, in locality.
I have no used the Bohem collector, I hope it becomes a standard feature
personally but I also would not support it becoming a mandatory
requirement for all C++ code.
There's no proposal for it to be mandatory; it's well recognized
that there are times when it isn't appropriate.

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 9 '07 #14
James Kanze wrote:
On Jun 9, 9:37 am, coder_...@yahoo.com wrote:
>Using a refcount smart pointer, can you show me an actual code
example of when a circular dependency is created? Yeah, I
figure A->B and B-A, but I'd appreciate if you could share
actual code samples.

A dual linked list. Many tree structures...
Symbolic expressions, any graph...

Seriously, if you're doing anything non-trivial, use a GC.

--
Dr Jon D Harrop, Flying Frog Consultancy
OCaml for Scientists
http://www.ffconsultancy.com/product...ntists/?usenet
Jun 11 '07 #15

"James Kanze" <ja*********@gmail.comwrote in message
news:11*********************@m36g2000hse.googlegro ups.com...
On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:

[...]
>Garbage collection is not free, it can be somewhat expensive
in compute resources.
Which explains why programs using garbage collection are
typically faster than those without.
What type of garbage collection are you talking about? Some of the methods
used to actually implement most types of "general purpose" garbage
collection are overkill and can have an overall negative effect on
scalability and performance in general. IMHO, C++ simply does not need a GC.

Jun 17 '07 #16
"James Kanze" <ja*********@gmail.comwrote in message
news:11**********************@c77g2000hse.googlegr oups.com...
On Jun 9, 9:40 am, coder_...@yahoo.com wrote:
>How well does BOEHM work in an embedded environment? I have
to port substantial amount of J2ME applications to another
C/C++ embedded environment. Based on my study, I figure that
RefCount smart pointers and proper use of assignment operator
and copy constructor will essentially give me the a pseudo
Java "reference" / garbage collection programming model.
It depends really on the embedded environment. I'm tempted to
say that it works about as well as ref. counted smart
pointers:-).
[...]

I feel the need to point out the fact that you cannot use something like
Boost shared_ptr to implement Java References. Your going to have to use
some sort of PDR scheme instead:

http://groups.google.com/group/comp....376b7295e6ce1a
(origin of term 'PDR'...)
Any solution is going to have to have strong thread-safety characteristics:

http://groups.google.com/group/comp....67941d32340c6/
(difference between basic and normal thread-safety...)
You certainly do not need a full-blown GC to implement Java References in
C++. For instance, you could use full-blown atomic reference counting to
implement something just like Java References in C++:

http://appcore.home.comcast.net/vzoom/refcount/

http://atomic-ptr-plus.sourceforge.net/

Any thoughts?

Jun 17 '07 #17
"Chris Thomasson" <cr*****@comcast.netwrote in message
news:QN******************************@comcast.com. ..
>
"James Kanze" <ja*********@gmail.comwrote in message
news:11*********************@m36g2000hse.googlegro ups.com...
On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:

[...]
>>Garbage collection is not free, it can be somewhat expensive
in compute resources.
>Which explains why programs using garbage collection are
typically faster than those without.

What type of garbage collection are you talking about? Some of the methods
used to actually implement most types of "general purpose" garbage
collection are overkill
[...]

Well, I guess it would be nice for C++ to offer a "Proxy" Garbage Collector
scheme... That would not be overkill IMO because a proxy garbage collector
can actually be implemented with virtually zero-overheads:

http://appcore.home.comcast.net/vzoom/round-1.pdf
(section 1.1)

http://appcore.home.comcast.net/vzoom/round-2.pdf
(section 1.2)

Jun 17 '07 #18
Chris Thomasson wrote:
:: "James Kanze" <ja*********@gmail.comwrote in message
:: news:11*********************@m36g2000hse.googlegro ups.com...
:: On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:
::
:: [...]
::
:::: Garbage collection is not free, it can be somewhat expensive
:::: in compute resources.
::
::: Which explains why programs using garbage collection are
::: typically faster than those without.
::
:: What type of garbage collection are you talking about? Some of the
:: methods used to actually implement most types of "general purpose"
:: garbage collection are overkill and can have an overall negative
:: effect on scalability and performance in general. IMHO, C++ simply
:: does not need a GC.

Using GC saves on allocation and management. Skip your smart pointers
and reference counting, and you save on both execution time and
programming effort.

If the collector isn't run often (or at all, for typical benchmarks!),
it can be a net saving.
Bo Persson
Jun 17 '07 #19
"Bo Persson" <bo*@gmb.dkwrote in message
news:5d*************@mid.individual.net...
Chris Thomasson wrote:
:: "James Kanze" <ja*********@gmail.comwrote in message
:: news:11*********************@m36g2000hse.googlegro ups.com...
:: On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:
::
:: [...]
::
:::: Garbage collection is not free, it can be somewhat expensive
:::: in compute resources.
::
::: Which explains why programs using garbage collection are
::: typically faster than those without.
::
:: What type of garbage collection are you talking about? Some of the
:: methods used to actually implement most types of "general purpose"
:: garbage collection are overkill and can have an overall negative
:: effect on scalability and performance in general. IMHO, C++ simply
:: does not need a GC.

Using GC saves on allocation
What does a general-purpose GC save on allocation in general when compared
to a state-of-the-art memory allocator algorithm:

http://groups.google.com/group/comp....c40d42a04ee855
and management.
Well, yes I agree that GC makes it so a programmer does not really "need" to
hold a firm understanding of the fact that freeing any memory that is not in
a persistent quiescent state is a very, very bad practice...
Skip your smart pointers and reference counting, and you save on both
execution time
This is simply not true in all cases. I can come up with several scaleable
memory management techniques that a traditional GC cannot compete with.
Here's a question: Can a general-purpose GC guarantee that threads will
never be interrupted by it during their entire lifetimes? I know of
special-purpose GC algorithms that can make this guarantee, however, I can't
think of a general-purpose GC one than can...
and programming effort.
Well, yes... But heck, doesn't that take all the fun out of programming?

:^)
Anyway, I am still holding my opinion that C++ Standard should not force a
GC into the mix...

Jun 17 '07 #20
[...]
This is simply not true in all cases. I can come up with several scaleable
memory management techniques that a traditional GC cannot compete with.
^^^^^^^^^^^^^^^^^^^^^^^

Some of the techniques can include special forms of reference counting.

[...]
I guess we should discuss some possible methods that can be used to reduce
the overhead in general-purpose garbage collectors. Any clever ideas?

;^)
Here are just a few of mine:

_____________________

http://groups.google.com/group/comp....007ffdf246d50e
(read whole thread...)
http://groups.google.com/group/comp....c9c2673682d4cf
http://appft1.uspto.gov/netacgi/nph-...DN/20070067770
(a possible technique for a GC to use...)

_____________________
:^)

Jun 17 '07 #21
"Gianni Mariani" <gi*******@mariani.wswrote in message
news:46***********************@per-qv1-newsreader-01.iinet.net.au...
James Kanze wrote:
...
>Obviously, it's stupid not to use the Boehm collector when you
can,

I have found that using smart pointers is almost all that is needed to
develop a leak free application.
Well, actually, nothing special is really "needed" to develop a leak-free
application... We all know that we can create leak-free programs by using
patience and discipline when designing their memory management techniques.

The circular pointers issue is normally very easy to design around.
Agreed.

Jun 17 '07 #22
"Bo Persson" <bo*@gmb.dkwrote in message
news:5d*************@mid.individual.net...
Chris Thomasson wrote:
:: "James Kanze" <ja*********@gmail.comwrote in message
:: news:11*********************@m36g2000hse.googlegro ups.com...
:: On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:
::
:: [...]
[...]
If the collector isn't run often (or at all, for typical benchmarks!), it
can be a net saving.
The collector can run quite often in certain scenarios... Its not really
something that can be predicted...

Jun 17 '07 #23
"Jon Harrop" <jo*@ffconsultancy.comwrote in message
news:46**********************@ptn-nntp-reader02.plus.net...
co*******@yahoo.com wrote:
>Well, I came across Scott Meyer's SmartPtr example from some 10 years
ago. I like the template member function for type conversion to solve
inheritance issues.

As smart pointers are a rudimentary precursor of garbage collection, you
might consider a full-blown garbage collector or a garbage collected
language. There is really no need to battle "inheritance issues" any more.
"Sometimes" you will need to use a reference counting smart-pointer even if
your using GC. Here is a quick example of such a scenario:

http://groups.google.com/group/comp....c58e3e1d902aec

Any thoughts?

Jun 17 '07 #24
"Jon Harrop" <jo*@ffconsultancy.comwrote in message
news:46**********************@ptn-nntp-reader02.plus.net...
James Kanze wrote:
>On Jun 9, 9:37 am, coder_...@yahoo.com wrote:
>>Using a refcount smart pointer, can you show me an actual code
example of when a circular dependency is created? Yeah, I
figure A->B and B-A, but I'd appreciate if you could share
actual code samples.

A dual linked list. Many tree structures...

Symbolic expressions, any graph...

Seriously, if you're doing anything non-trivial, use a GC.
If you think you need a GC, then use a GC... The truth is that a GC is never
required for anything... Think about it? Can you give me an example of where
a GC is simply required to implement a particular algorithm?

GC is a convenience IMHO... If somebody thinks they "need" a GC to make
their programs correct, then perhaps programming is not one of their strong
points?

Jun 17 '07 #25
On 2007-06-17 13:19, Chris Thomasson wrote:
"Jon Harrop" <jo*@ffconsultancy.comwrote in message
news:46**********************@ptn-nntp-reader02.plus.net...
>James Kanze wrote:
>>On Jun 9, 9:37 am, coder_...@yahoo.com wrote:
Using a refcount smart pointer, can you show me an actual code
example of when a circular dependency is created? Yeah, I
figure A->B and B-A, but I'd appreciate if you could share
actual code samples.

A dual linked list. Many tree structures...

Symbolic expressions, any graph...

Seriously, if you're doing anything non-trivial, use a GC.

If you think you need a GC, then use a GC... The truth is that a GC is never
required for anything... Think about it? Can you give me an example of where
a GC is simply required to implement a particular algorithm?

GC is a convenience IMHO... If somebody thinks they "need" a GC to make
their programs correct, then perhaps programming is not one of their strong
points?
Or they've never learned to use anything else (like someone who started
with Java). The really interesting question (IMO) is whether one can
write all programs without using dynamically allocated memory except in
a few well understood and encapsulated places (like the standard
containers). Personally I seldom use dynamic memory/pointers in my
programs, so I don't really see what GC would give me.

--
Erik Wikström
Jun 17 '07 #26
"Erik Wikström" <Er***********@telia.comwrote in message
news:Dc****************@newsb.telia.net...
On 2007-06-17 13:19, Chris Thomasson wrote:
>"Jon Harrop" <jo*@ffconsultancy.comwrote in message
news:46**********************@ptn-nntp-reader02.plus.net...
>>James Kanze wrote:
On Jun 9, 9:37 am, coder_...@yahoo.com wrote:
Using a refcount smart pointer, can you show me an actual code
example of when a circular dependency is created? Yeah, I
figure A->B and B-A, but I'd appreciate if you could share
actual code samples.

A dual linked list. Many tree structures...

Symbolic expressions, any graph...

Seriously, if you're doing anything non-trivial, use a GC.

If you think you need a GC, then use a GC... The truth is that a GC is
never required for anything... Think about it? Can you give me an example
of where a GC is simply required to implement a particular algorithm?

GC is a convenience IMHO... If somebody thinks they "need" a GC to make
their programs correct, then perhaps programming is not one of their
strong points?

Or they've never learned to use anything else (like someone who started
with Java).
Good point.

The really interesting question (IMO) is whether one can write all
programs without using dynamically allocated memory except in a few well
understood and encapsulated places (like the standard containers).
I think disciplined use of dynamic allocation in the way you describe is
just evidence of a good overall design of your applications memory
management scheme(s)... IMHO at least...

;^)

Personally I seldom use dynamic memory/pointers in my programs, so I don't
really see what GC would give me.
I think GC would just add extra unwanted overhead to your programs... IMHO,
this is one of the reasons why GC should not be "forced" into the C++
Standard...

Jun 17 '07 #27
On Jun 17, 10:56 am, "Chris Thomasson" <cris...@comcast.netwrote:
"James Kanze" <james.ka...@gmail.comwrote in message
news:11*********************@m36g2000hse.googlegro ups.com...
On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:
[...]
Garbage collection is not free, it can be somewhat expensive
in compute resources.
Which explains why programs using garbage collection are
typically faster than those without.
What type of garbage collection are you talking about?
The Boehm collector.
Some of the methods
used to actually implement most types of "general purpose" garbage
collection are overkill and can have an overall negative effect on
scalability and performance in general.
You can always find exceptions. I said generally.
IMHO, C++ simply does not need a GC.
Nor did it need templates, nor exceptions. It's just a tool
which means less work for the programmer.

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jun 17 '07 #28
On Jun 17, 12:13 pm, "Bo Persson" <b...@gmb.dkwrote:
Chris Thomasson wrote:
[...]
If the collector isn't run often (or at all, for typical benchmarks!),
it can be a net saving.
A benchmark in which the garbage collector never runs isn't very
convincing. It's easy, however, to construct special cases
where garbage collection is significantly faster than manual
memory management. Or significantly slower, if that's what
you're trying to prove. Never trust any benchmark you haven't
falsified yourself.

Globally, I find that for a large number of real applications,
using garbage collection results in slightly better performance.
Nothing to get excited about, but since it comes with
significantly less work for the programmer, it would be a shame
not to use it.

It would be just as wrong, however, to think that garbage
collection is a silver bullet, and that it will solve all of
your problems, or even that it is appropriate everywhere.

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 17 '07 #29
"James Kanze" <ja*********@gmail.comwrote in message
news:11*********************@c77g2000hse.googlegro ups.com...
On Jun 17, 10:56 am, "Chris Thomasson" <cris...@comcast.netwrote:
"James Kanze" <james.ka...@gmail.comwrote in message
news:11*********************@m36g2000hse.googlegro ups.com...
On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:
[...]
[...]
IMHO, C++ simply does not need a GC.
Nor did it need templates, nor exceptions. It's just a tool
which means less work for the programmer.
If GC does make it into the language, imho, it should be optional...
Jun 17 '07 #30
On 2007-06-17 16:39, Chris Thomasson wrote:
"James Kanze" <ja*********@gmail.comwrote in message
news:11*********************@c77g2000hse.googlegro ups.com...
On Jun 17, 10:56 am, "Chris Thomasson" <cris...@comcast.netwrote:
"James Kanze" <james.ka...@gmail.comwrote in message
news:11*********************@m36g2000hse.googlegro ups.com...
On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:
[...]

[...]
IMHO, C++ simply does not need a GC.
>Nor did it need templates, nor exceptions. It's just a tool
which means less work for the programmer.

If GC does make it into the language, imho, it should be optional...
That seems to be a sentiment that the standards committee shares with
you, so never fear.

--
Erik Wikström
Jun 17 '07 #31
"Erik Wikström" <Er***********@telia.comwrote in message
news:d9****************@newsb.telia.net...
On 2007-06-17 16:39, Chris Thomasson wrote:
[...]
>If GC does make it into the language, imho, it should be optional...

That seems to be a sentiment that the standards committee shares with you,
so never fear.

Good to here!

Jun 18 '07 #32
"Erik Wikström" <Er***********@telia.comwrote in message
news:d9****************@newsb.telia.net...
On 2007-06-17 16:39, Chris Thomasson wrote:
>"James Kanze" <ja*********@gmail.comwrote in message
news:11*********************@c77g2000hse.googlegr oups.com...
On Jun 17, 10:56 am, "Chris Thomasson" <cris...@comcast.netwrote:
>"James Kanze" <james.ka...@gmail.comwrote in message
news:11*********************@m36g2000hse.googlegr oups.com...
On Jun 9, 10:16 am, Gianni Mariani <gi3nos...@mariani.wswrote:
[...]
>>
>IMHO, C++ simply does not need a GC.
>>Nor did it need templates, nor exceptions. It's just a tool
which means less work for the programmer.

If GC does make it into the language, imho, it should be optional...

That seems to be a sentiment that the standards committee shares with you,
so never fear.
Well, I think they have to keep the GC optional. If the force a low-level
systems language to use a GC, then it would not longer be all that
"practical" for __low-level__ operating system design...

Jun 20 '07 #33
On Jun 20, 5:08 am, "Chris Thomasson" <cris...@comcast.netwrote:
"Erik Wikström" <Erik-wikst...@telia.comwrote in message
[...]
That seems to be a sentiment that the standards committee shares with you,
so never fear.
Well, I think they have to keep the GC optional. If the force a low-level
systems language to use a GC, then it would not longer be all that
"practical" for __low-level__ operating system design...
I think that it's generally agreed that you should be able to
write a garbage collector in C++. Since you obviously can't use
garbage collection to implement the collector (without getting
endless recursion)...

But that's true for a lot of things already: std::vector can't
use std::vector in it's implementation, for example, but can
definitly be written in C++.

With regards to "optional": it depends on what you mean. There
is certainly no movement to force people to use garbage
collection where it isn't appropriate. On the other hand, I do
think that it should be required that a hosted implementation
support it---it's not optional for the implementation.

--
James Kanze (GABI Software, from CAI) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 20 '07 #34
"James Kanze" <ja*********@gmail.comwrote in message
news:11*********************@c77g2000hse.googlegro ups.com...
On Jun 20, 5:08 am, "Chris Thomasson" <cris...@comcast.netwrote:
"Erik Wikström" <Erik-wikst...@telia.comwrote in message
[...]
That seems to be a sentiment that the standards committee shares with
you,
so never fear.
Well, I think they have to keep the GC optional. If the force a
low-level
systems language to use a GC, then it would not longer be all that
"practical" for __low-level__ operating system design...
I think that it's generally agreed that you should be able to
write a garbage collector in C++. Since you obviously can't use
garbage collection to implement the collector (without getting
endless recursion)...
Agreed.

[...]
With regards to "optional": it depends on what you mean. There
is certainly no movement to force people to use garbage
collection where it isn't appropriate.
Okay; that's definitely good news.
On the other hand, I do
think that it should be required that a hosted implementation
support it---it's not optional for the implementation.
Okay. I need a little clarification: Are you saying that any implementation
of the Standard C++ runtime for any architecture must have a full-blown
general-purpose garbage collector built-in it's infrastructure?

Jun 21 '07 #35
On Jun 21, 4:02 pm, "Chris Thomasson" <cris...@comcast.netwrote:
"James Kanze" <james.ka...@gmail.comwrote in message
news:11*********************@c77g2000hse.googlegro ups.com...
On Jun 20, 5:08 am, "Chris Thomasson" <cris...@comcast.netwrote:
"Erik Wikström" <Erik-wikst...@telia.comwrote in message
[...]
On the other hand, I do
think that it should be required that a hosted implementation
support it---it's not optional for the implementation.
Okay. I need a little clarification: Are you saying that any
implementation of the Standard C++ runtime for any
architecture must have a full-blown general-purpose garbage
collector built-in it's infrastructure?
I'm not sure concerning the latest evolution, but the last I
saw, a hosted implementation would not be conforming if it
wasn't possible to request the use of garbage collection. So
for hosted implementations, yes, although I'm not sure what you
mean by "built-in". It's a set of library components, plus
(probably) some compiler options. If you don't use it, you
shouldn't have to pay for it. (Except, of course, in that it
means that the library files will take up a little more space on
your disk, etc. The total cost will certainly be less than for
std::vector.)

--
James Kanze (GABI Software, from CAI) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 21 '07 #36
"James Kanze" <ja*********@gmail.comwrote in message
news:11**********************@k79g2000hse.googlegr oups.com...
On Jun 21, 4:02 pm, "Chris Thomasson" <cris...@comcast.netwrote:
"James Kanze" <james.ka...@gmail.comwrote in message
news:11*********************@c77g2000hse.googlegro ups.com...
On Jun 20, 5:08 am, "Chris Thomasson" <cris...@comcast.netwrote:
"Erik Wikström" <Erik-wikst...@telia.comwrote in message
[...]
On the other hand, I do
think that it should be required that a hosted implementation
support it---it's not optional for the implementation.
Okay. I need a little clarification: Are you saying that any
implementation of the Standard C++ runtime for any
architecture must have a full-blown general-purpose garbage
collector built-in it's infrastructure?
I'm not sure concerning the latest evolution, but the last I
saw, a hosted implementation would not be conforming if it
wasn't possible to request the use of garbage collection. So
for hosted implementations, yes, although I'm not sure what you
mean by "built-in".
Built-in wrt garbage collector itself being hard-coded into some/all of the
libraries that make up the hosted implementations entire Standard C++
runtime...
It's a set of library components, plus
(probably) some compiler options. If you don't use it, you
shouldn't have to pay for it.
Indeed! ;^)
(Except, of course, in that it
means that the library files will take up a little more space on
your disk, etc. The total cost will certainly be less than for
std::vector.)
Okay. Well, I was just wondering if I would __have to__ create some sort of
"general-purpose" GC and incorporate it into the library(s) which make up
one of my custom C++ runtimes... Seems like your saying that I would have to
do "something" like that. I guess that's okay.

One other question... Would the GC have to be general-purpose? What would
the GC be required to protect? Does it have to track every single piece of
dynamically allocated memory? If I have to protect everything, then I don't
think I could apply some of the neat tricks I have learned over the years...
Well, I think that the GC Specification in the Standard should be "flexible"
enough to at least allow some PDR techniques to be used. For instance, I
think it could be beneficial if the Standard's wording could allow for
something like a "Proxy" Garbage Collector to be used instead of a
full-blown "Conventional" GC.

I am concerned that the GC rules wrt the std will rule out some novel
innovations in the areas of GC techniques/implementations and possible
usage-patterns...
Any thoughts?

___________________
P.S.
------- {
>
http://groups.google.com/group/comp....f29efe33e7f124
} (brief definition of Proxy GC...)
------- {
>
http://groups.google.com/group/comp....376b7295e6ce1a
>
http://groups.google.com/group/comp....9c2dd1afb8e0a3
>
http://groups.google.com/group/comp....e8e86dcce00c11
>
http://groups.google.com/group/comp....376b7295e6ce1a
>
http://groups.google.com/group/comp....f751d5dad6c07b
} (brief description of 'PDR')...

Jun 21 '07 #37
On Jun 21, 6:22 pm, "Chris Thomasson" <cris...@comcast.netwrote:
"James Kanze" <james.ka...@gmail.comwrote in message
news:11**********************@k79g2000hse.googlegr oups.com...
On Jun 21, 4:02 pm, "Chris Thomasson" <cris...@comcast.netwrote:
"James Kanze" <james.ka...@gmail.comwrote in message
>news:11*********************@c77g2000hse.googlegr oups.com...
On Jun 20, 5:08 am, "Chris Thomasson" <cris...@comcast.netwrote:
"Erik Wikström" <Erik-wikst...@telia.comwrote in message
[...]
On the other hand, I do
think that it should be required that a hosted implementation
support it---it's not optional for the implementation.
Okay. I need a little clarification: Are you saying that any
implementation of the Standard C++ runtime for any
architecture must have a full-blown general-purpose garbage
collector built-in it's infrastructure?
I'm not sure concerning the latest evolution, but the last I
saw, a hosted implementation would not be conforming if it
wasn't possible to request the use of garbage collection. So
for hosted implementations, yes, although I'm not sure what you
mean by "built-in".
Built-in wrt garbage collector itself being hard-coded into some/all of the
libraries that make up the hosted implementations entire Standard C++
runtime...
It's still very much in a state of flux, but the last proposal I
saw provided for three cases: code which required garbage
collection, code which couldn't work with it, and code which was
garbage collection neutral. Presumably, the standard libraries,
and most third party libraries, would be designed to fall into
the last category. (Although I suspect that more than a few
implementations would offer two sets of libraries, one of which
required garbage collection, simply because something like
std::basic_string can be made a lot faster if you can count on
garbage collection being present.)

[...]
(Except, of course, in that it
means that the library files will take up a little more space on
your disk, etc. The total cost will certainly be less than for
std::vector.)
Okay. Well, I was just wondering if I would __have to__ create some sort of
"general-purpose" GC and incorporate it into the library(s) which make up
one of my custom C++ runtimes... Seems like your saying that I would haveto
do "something" like that. I guess that's okay.
I'm not sure what you mean here. The obvious goal would be to
make most existing C++ code garbage collection neutral; to
define the requirements such that most existing code met them.
Third party libraries, except in special cases where they do
something funny, will probably automatically be garbage
collection neutral.
>From what little I understand of your work, you'll be much more
affected by the threading definitions which are added to the
standard.
One other question... Would the GC have to be general-purpose? What would
the GC be required to protect? Does it have to track every single piece of
dynamically allocated memory? If I have to protect everything, then I don't
think I could apply some of the neat tricks I have learned over the years....
Well, I think that the GC Specification in the Standard should be "flexible"
enough to at least allow some PDR techniques to be used. For instance, I
think it could be beneficial if the Standard's wording could allow for
something like a "Proxy" Garbage Collector to be used instead of a
full-blown "Conventional" GC.
I am concerned that the GC rules wrt the std will rule out some novel
innovations in the areas of GC techniques/implementations and possible
usage-patterns...
Any thoughts?
The obvious intent is not too. The general philosophy of C++ is
to rule out as little as possible (and it's a philosophy which
has paid off in the long run). The issue is still under active
discussion, however, and it's hard to say exactly what the final
form will be.

--
James Kanze (GABI Software, from CAI) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 22 '07 #38
In article <11*********************@k79g2000hse.googlegroups. com>,
ja*********@gmail.com says...

[ ... ]
It's still very much in a state of flux, but the last proposal I
saw provided for three cases: code which required garbage
collection, code which couldn't work with it, and code which was
garbage collection neutral. Presumably, the standard libraries,
and most third party libraries, would be designed to fall into
the last category. (Although I suspect that more than a few
implementations would offer two sets of libraries, one of which
required garbage collection, simply because something like
std::basic_string can be made a lot faster if you can count on
garbage collection being present.)
The most recent draft I've looked at on it is N2287. It fairly
specifically does NOT say you can ever depend on GC being present. The
closest it comes is a note that says [basic.stc.collect]:

[ Note: For garbage collected programs, a high quality
hosted implementation should attempt to maximize the
amount of unreachable memory it reclaims. ?end note ]

That's it. There's a lot of language to define things like what
constitutes unreachable memory. When you get down to it, however, a
large part of the idea is that the garbage collection is transparent --
which means it has no externally visible effect on the program.

I know a lot of people really want garbage collection, and I know some
smart people have really put some hard work into it -- but when you get
down to it, trying to specify GC in terms of externally visible,
required behavior is nearly impossible. There's no guarantee that any
allocation will ever succeed, and basically all GC can ever do do is
increase the chance of an allocation succeeding.

Other than that, N2287 adds some mechanisms that attempt to give you
control over whether GC is optional, required, etc. -- but with no clear
definition of what GC really does (and probably none possible) it's
pretty easy for an implementation to "conform" by saying GC is present,
but never providing a real implementation (i.e. GC is simply a NOP).

There are, of course a few real rules to be added -- basically just a
restriction against pointer swizzling, and other such things that
prevent a pointer from being recognized (well, it's not really a
restriction against it -- but the code has undefined behavior if it
attempts to dereference a pointer after it's been unrecognizable for any
period of time).

[ ... ]
The obvious intent is not too. The general philosophy of C++ is
to rule out as little as possible (and it's a philosophy which
has paid off in the long run). The issue is still under active
discussion, however, and it's hard to say exactly what the final
form will be.
At least based on the papers I've looked at so far, very little will be
ruled out in terms of implementation. At least in my view, the problem
is much more that code will be restricted without guaranteeing anything
in return. The only comfort is that the restrictions are pretty trivial.

--
Later,
Jerry.

The universe is a figment of its own imagination.
Jun 24 '07 #39
"Jerry Coffin" <jc*****@taeus.comwrote in message
news:MP************************@news.sunsite.dk...
In article <11*********************@k79g2000hse.googlegroups. com>,
ja*********@gmail.com says...
[...]
It's still very much in a state of flux, but the last proposal I
saw provided for three cases: code which required garbage
collection, code which couldn't work with it, and code which was
garbage collection neutral.
[...]
The most recent draft I've looked at on it is N2287. It fairly
specifically does NOT say you can ever depend on GC being present. The
closest it comes is a note that says [basic.stc.collect]:
[ Note: For garbage collected programs, a high quality
hosted implementation should attempt to maximize the
amount of unreachable memory it reclaims. ?end note ]
That's it.
Sound pretty good...

There's a lot of language to define things like what
constitutes unreachable memory.
That's the kind of broad statements I think we need when defining GC, or a
memory model for that matter, in the standard.
[...]

Jun 24 '07 #40
On Jun 24, 4:05 am, Jerry Coffin <jcof...@taeus.comwrote:
In article <1182494075.894249.69...@k79g2000hse.googlegroups. com>,
james.ka...@gmail.com says...
[ ... ]
It's still very much in a state of flux, but the last proposal I
saw provided for three cases: code which required garbage
collection, code which couldn't work with it, and code which was
garbage collection neutral. Presumably, the standard libraries,
and most third party libraries, would be designed to fall into
the last category. (Although I suspect that more than a few
implementations would offer two sets of libraries, one of which
required garbage collection, simply because something like
std::basic_string can be made a lot faster if you can count on
garbage collection being present.)
The most recent draft I've looked at on it is N2287. It fairly
specifically does NOT say you can ever depend on GC being present.
The text from the garbage collection proposals hasn't made
it into the draft yet, at least as far as I can see. For that
matter, I think that the current state of the proposal is far
from final.
I know a lot of people really want garbage collection, and I know some
smart people have really put some hard work into it -- but when you get
down to it, trying to specify GC in terms of externally visible,
required behavior is nearly impossible.
In the same way that trying to specify free() or the operator
delete() function is. (Both can be no-ops in a conforming
implementation, but of course, that is neither the intent, nor
what we expect from a QoI point of view.)

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jun 24 '07 #41
In article <11**********************@w5g2000hsg.googlegroups. com>,
ja*********@gmail.com says...

[ ... ]
The most recent draft I've looked at on it is N2287. It fairly
specifically does NOT say you can ever depend on GC being present.

The text from the garbage collection proposals hasn't made
it into the draft yet, at least as far as I can see. For that
matter, I think that the current state of the proposal is far
from final.
Sorry -- I didn't mean the draft standard, but the draft garbage
collection proposal...
I know a lot of people really want garbage collection, and I know some
smart people have really put some hard work into it -- but when you get
down to it, trying to specify GC in terms of externally visible,
required behavior is nearly impossible.

In the same way that trying to specify free() or the operator
delete() function is. (Both can be no-ops in a conforming
implementation, but of course, that is neither the intent, nor
what we expect from a QoI point of view.)
Right -- the difference being that the lack of definition of free/delete
has relatively little effect on the rest of the standard -- i.e. there's
a few lines devoted to describing what they're intended to do, and
that's it. In the case of GC, however, there's a _lot_ of text devoted
to definding things like what's collectible, what's unreachable, etc.,
-- but in the end, none of it really specifies any requirements.

--
Later,
Jerry.

The universe is a figment of its own imagination.
Jun 24 '07 #42
co*******@yahoo.com wrote:
Using a refcount smart pointer, can you show me an actual code example
of when a circular dependency is created? Yeah, I figure A->B and B->A,
but I'd appreciate if you could share actual code samples.
Symbolic manipulation, because expressions can refer to each other
arbitrarily. Mathematica is written in a dialect of C and uses reference
counting. Consequently, it leaks.

--
Dr Jon D Harrop, Flying Frog Consultancy
The OCaml Journal
http://www.ffconsultancy.com/product...ournal/?usenet
Jul 5 '07 #43

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

Similar topics

2
by: Tobias Kilian | last post by:
Hi Ng ! I wrote a SmartPointer class which holds a doubled linked list to all its copies to ensure that all copies are holding the same pointer, even if one copy changes later. If the last...
45
by: Ben Blank | last post by:
I'm writing a family of classes which all inherit most of their methods and code (including constructors) from a single base class. When attempting to instance one of the derived classes using...
1
by: John | last post by:
Hi, Maybe someone can help me with the following: "The first task by any derived class constructor is to call it’s direct or indirect base class constructor implicitly or explicitly", reads the...
5
by: Thomas Girod | last post by:
Hi. I think I'm missing something about multiple inheritance in python. I've got this code. class Foo: def __init__(self): self.x = "defined by foo" self.foo = None
15
by: mathieu | last post by:
Hi, I have implemented a SmartPointer class following the implementation proposed by Bill Hubauer(*). But I also override the operator * () template<class ObjectType> class SmartPointer {...
1
by: petschy | last post by:
hello, i've run into an error when qualifying a copy ctor 'explicit'. the strange thing is that i get a compiler error only if the class is a template and declare the variable as X<Zx = y....
7
by: Adam Nielsen | last post by:
Hi everyone, I'm having some trouble getting the correct chain of constructors to be called when creating an object at the bottom of a hierarchy. Have a look at the code below - the inheritance...
2
by: coder_lol | last post by:
MS VS 7.0 happily resolves by SmartPointer and Inheritance, but I got to use another target compiler and it does not accept user conversion for templates. Can I forced a recast somehow? I have...
0
by: paalkrebs | last post by:
I've made two smartpointers that I'd like to share. Improvements and comments are welcome. The key to both is that there should be no access to the managed object, and all operations should be...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
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:
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...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.