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

Performance on string destruction

Thinking for performance & system resources;

I have a string field inside a major object that contains big XML response.
When I am done with it, I want to clear out this field to give some relief
to memory.

Should I use this:
SabreContractResponse.Remove(0,SabreContractRespon se.Length);
SabreContractResponse = null;

or just this:
SabreContractResponse = null;

or do you have any other suggestion?

Thanks
--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers

Nov 17 '05 #1
23 1504
Setting it to null will accomplish nothing unless perhaps there is a lot
of other processing in the same method before it exits. Otherwise, just
let the StringBuilder reference go out of scope when the routine exits.

Deleting what's in the buffer would only make sense if you're going to
reuse it. Setting the StringBuilder instance to null will cause the GC
to reclaim the whole object, including the buffer, *at such time as the
GC feels it's necessary*.

I emphasized the last point because so many people get bogged down in
anxiously watching memory (often looking at the wrong memory indicator,
as well) and then have a cow when it doesn't (appear to) be freed up.
In effect, memory is marked by the GC as reclaimable when it's no longer
needed.

--Bob

SevDer wrote:
Thinking for performance & system resources;

I have a string field inside a major object that contains big XML response.
When I am done with it, I want to clear out this field to give some relief
to memory.

Should I use this:
SabreContractResponse.Remove(0,SabreContractRespon se.Length);
SabreContractResponse = null;

or just this:
SabreContractResponse = null;

or do you have any other suggestion?

Thanks

Nov 17 '05 #2
SevDer <se****@newsgroup.nospam> wrote:
Thinking for performance & system resources;

I have a string field inside a major object that contains big XML response.
When I am done with it, I want to clear out this field to give some relief
to memory.

Should I use this:
SabreContractResponse.Remove(0,SabreContractRespon se.Length);
SabreContractResponse = null;

or just this:
SabreContractResponse = null;
Well the first line in former option isn't going to do what you want it
to - it's just going to return an empty string which you then ignore.
or do you have any other suggestion?


Is this field a member variable in an object which is meant to live for
significantly longer? If so, setting it to null is the way forward.

However, I rarely find that it's a good idea to have member variables
which effectively have a lifetime which is shorter than the containing
object. Do you really need it to be a member variable? What's the
context here?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 17 '05 #3
Hi Jon,

The member variable lives relatively shorter than the object.
Objects lives along with the ASP.NET session, and it is the most fundemental
object to the application.

And one important thing about that member variable is that, it is being
updated by thread(s).

Do you still suggest to reference it to "null"?

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
SevDer <se****@newsgroup.nospam> wrote:
Thinking for performance & system resources;

I have a string field inside a major object that contains big XML
response.
When I am done with it, I want to clear out this field to give some
relief
to memory.

Should I use this:
SabreContractResponse.Remove(0,SabreContractRespon se.Length);
SabreContractResponse = null;

or just this:
SabreContractResponse = null;


Well the first line in former option isn't going to do what you want it
to - it's just going to return an empty string which you then ignore.
or do you have any other suggestion?


Is this field a member variable in an object which is meant to live for
significantly longer? If so, setting it to null is the way forward.

However, I rarely find that it's a good idea to have member variables
which effectively have a lifetime which is shorter than the containing
object. Do you really need it to be a member variable? What's the
context here?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 17 '05 #4
Setting it to null will accomplish nothing unless perhaps there is a lot
of other processing in the same method before it exits. Otherwise, just
let the StringBuilder reference go out of scope when the routine exits.

Deleting what's in the buffer would only make sense if you're going to
reuse it. Setting the StringBuilder instance to null will cause the GC
to reclaim the whole object, including the buffer, *at such time as the
GC feels it's necessary*.

I emphasized the last point because so many people get bogged down in
anxiously watching memory (often looking at the wrong memory indicator,
as well) and then have a cow when it doesn't (appear to) be freed up.
In effect, memory is marked by the GC as reclaimable when it's no longer
needed.

--Bob

SevDer wrote:
Thinking for performance & system resources;

I have a string field inside a major object that contains big XML response.
When I am done with it, I want to clear out this field to give some relief
to memory.

Should I use this:
SabreContractResponse.Remove(0,SabreContractRespon se.Length);
SabreContractResponse = null;

or just this:
SabreContractResponse = null;

or do you have any other suggestion?

Thanks

Nov 17 '05 #5
Hi Bob,

First, there are a lot of processing in the container object. It is being
used in ASP.NET by 4-8 threads and kept in Session variable. (I guess this
gives the main idea about the container object)

For using the string builder, we get the XML from a service at once. What is
the biggest advantage of StringBuilder against string when we do not append
any data, but just parse and grab data from it?

Thanks for your help

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Bob Grommes" <bo*@bobgrommes.com> wrote in message
news:eV**************@tk2msftngp13.phx.gbl...
Setting it to null will accomplish nothing unless perhaps there is a lot
of other processing in the same method before it exits. Otherwise, just
let the StringBuilder reference go out of scope when the routine exits.

Deleting what's in the buffer would only make sense if you're going to
reuse it. Setting the StringBuilder instance to null will cause the GC to
reclaim the whole object, including the buffer, *at such time as the GC
feels it's necessary*.

I emphasized the last point because so many people get bogged down in
anxiously watching memory (often looking at the wrong memory indicator, as
well) and then have a cow when it doesn't (appear to) be freed up. In
effect, memory is marked by the GC as reclaimable when it's no longer
needed.

--Bob

SevDer wrote:
Thinking for performance & system resources;

I have a string field inside a major object that contains big XML
response.
When I am done with it, I want to clear out this field to give some
relief to memory.

Should I use this:
SabreContractResponse.Remove(0,SabreContractRespon se.Length);
SabreContractResponse = null;

or just this:
SabreContractResponse = null;

or do you have any other suggestion?

Thanks

Nov 17 '05 #6
Hi Jon,

The member variable lives relatively shorter than the object.
Objects lives along with the ASP.NET session, and it is the most fundemental
object to the application.

And one important thing about that member variable is that, it is being
updated by thread(s).

Do you still suggest to reference it to "null"?

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
SevDer <se****@newsgroup.nospam> wrote:
Thinking for performance & system resources;

I have a string field inside a major object that contains big XML
response.
When I am done with it, I want to clear out this field to give some
relief
to memory.

Should I use this:
SabreContractResponse.Remove(0,SabreContractRespon se.Length);
SabreContractResponse = null;

or just this:
SabreContractResponse = null;


Well the first line in former option isn't going to do what you want it
to - it's just going to return an empty string which you then ignore.
or do you have any other suggestion?


Is this field a member variable in an object which is meant to live for
significantly longer? If so, setting it to null is the way forward.

However, I rarely find that it's a good idea to have member variables
which effectively have a lifetime which is shorter than the containing
object. Do you really need it to be a member variable? What's the
context here?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 17 '05 #7
Hi Bob,

First, there are a lot of processing in the container object. It is being
used in ASP.NET by 4-8 threads and kept in Session variable. (I guess this
gives the main idea about the container object)

For using the string builder, we get the XML from a service at once. What is
the biggest advantage of StringBuilder against string when we do not append
any data, but just parse and grab data from it?

Thanks for your help

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Bob Grommes" <bo*@bobgrommes.com> wrote in message
news:eV**************@tk2msftngp13.phx.gbl...
Setting it to null will accomplish nothing unless perhaps there is a lot
of other processing in the same method before it exits. Otherwise, just
let the StringBuilder reference go out of scope when the routine exits.

Deleting what's in the buffer would only make sense if you're going to
reuse it. Setting the StringBuilder instance to null will cause the GC to
reclaim the whole object, including the buffer, *at such time as the GC
feels it's necessary*.

I emphasized the last point because so many people get bogged down in
anxiously watching memory (often looking at the wrong memory indicator, as
well) and then have a cow when it doesn't (appear to) be freed up. In
effect, memory is marked by the GC as reclaimable when it's no longer
needed.

--Bob

SevDer wrote:
Thinking for performance & system resources;

I have a string field inside a major object that contains big XML
response.
When I am done with it, I want to clear out this field to give some
relief to memory.

Should I use this:
SabreContractResponse.Remove(0,SabreContractRespon se.Length);
SabreContractResponse = null;

or just this:
SabreContractResponse = null;

or do you have any other suggestion?

Thanks

Nov 17 '05 #8
SevDer <se****@newsgroup.nospam> wrote:
The member variable lives relatively shorter than the object.
Objects lives along with the ASP.NET session, and it is the most fundemental
object to the application.

And one important thing about that member variable is that, it is being
updated by thread(s).
That doesn't necessarily mean it has to be a member variable in that
class - there are other ways of sharing data between threads. I'd need
to know more about what you're doing to say how to go about it though.
Do you still suggest to reference it to "null"?


Only if it absolutely has to be a member variable of your long-lived
object.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 17 '05 #9
SevDer <se****@newsgroup.nospam> wrote:
The member variable lives relatively shorter than the object.
Objects lives along with the ASP.NET session, and it is the most fundemental
object to the application.

And one important thing about that member variable is that, it is being
updated by thread(s).
That doesn't necessarily mean it has to be a member variable in that
class - there are other ways of sharing data between threads. I'd need
to know more about what you're doing to say how to go about it though.
Do you still suggest to reference it to "null"?


Only if it absolutely has to be a member variable of your long-lived
object.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 17 '05 #10
Hi SevDer,

I think setting the member to null is just fine. It will release the handle
to the string object, and leave it to GC.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."

Nov 17 '05 #11
Hi SevDer,

I think setting the member to null is just fine. It will release the handle
to the string object, and leave it to GC.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."

Nov 17 '05 #12
I'm not sure I understand your question clearly, but StringBuilder is
generally used when you need to append many strings into a larger one.
If whatever operation you're doing doesn't require significant
concatenation to that data once it's obtained, then I would just put the
contents into a string in the first place.

That doesn't really impact the question of what you should do to get rid
of the resulting object when you're done with it. Whether the object is
a string or a StringBuilder the same principles apply; when you're done,
in most real world scenarios simply letting it go out of scope is fine
unless, as appears to be the case here, it is a shared object that won't
be needed for some time, in which case you could set it to null.

In the case of a StringBuilder if it's going to continue to be reused my
impulse would be to clear its buffer but not set it to null; that way
other processes don't have the slight overhead of newing up another
StringBuilder, but can simply use what's already there.

--Bob

SevDer wrote:
Hi Bob,

First, there are a lot of processing in the container object. It is being
used in ASP.NET by 4-8 threads and kept in Session variable. (I guess this
gives the main idea about the container object)

For using the string builder, we get the XML from a service at once. What is
the biggest advantage of StringBuilder against string when we do not append
any data, but just parse and grab data from it?

Thanks for your help

Nov 17 '05 #13
I'm not sure I understand your question clearly, but StringBuilder is
generally used when you need to append many strings into a larger one.
If whatever operation you're doing doesn't require significant
concatenation to that data once it's obtained, then I would just put the
contents into a string in the first place.

That doesn't really impact the question of what you should do to get rid
of the resulting object when you're done with it. Whether the object is
a string or a StringBuilder the same principles apply; when you're done,
in most real world scenarios simply letting it go out of scope is fine
unless, as appears to be the case here, it is a shared object that won't
be needed for some time, in which case you could set it to null.

In the case of a StringBuilder if it's going to continue to be reused my
impulse would be to clear its buffer but not set it to null; that way
other processes don't have the slight overhead of newing up another
StringBuilder, but can simply use what's already there.

--Bob

SevDer wrote:
Hi Bob,

First, there are a lot of processing in the container object. It is being
used in ASP.NET by 4-8 threads and kept in Session variable. (I guess this
gives the main idea about the container object)

For using the string builder, we get the XML from a service at once. What is
the biggest advantage of StringBuilder against string when we do not append
any data, but just parse and grab data from it?

Thanks for your help

Nov 17 '05 #14
Thanks for details Bob.

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Bob Grommes" <bo*@bobgrommes.com> wrote in message
news:%2******************@tk2msftngp13.phx.gbl...
I'm not sure I understand your question clearly, but StringBuilder is
generally used when you need to append many strings into a larger one. If
whatever operation you're doing doesn't require significant concatenation
to that data once it's obtained, then I would just put the contents into a
string in the first place.

That doesn't really impact the question of what you should do to get rid
of the resulting object when you're done with it. Whether the object is a
string or a StringBuilder the same principles apply; when you're done, in
most real world scenarios simply letting it go out of scope is fine
unless, as appears to be the case here, it is a shared object that won't
be needed for some time, in which case you could set it to null.

In the case of a StringBuilder if it's going to continue to be reused my
impulse would be to clear its buffer but not set it to null; that way
other processes don't have the slight overhead of newing up another
StringBuilder, but can simply use what's already there.

--Bob

SevDer wrote:
Hi Bob,

First, there are a lot of processing in the container object. It is being
used in ASP.NET by 4-8 threads and kept in Session variable. (I guess
this gives the main idea about the container object)

For using the string builder, we get the XML from a service at once. What
is the biggest advantage of StringBuilder against string when we do not
append any data, but just parse and grab data from it?

Thanks for your help

Nov 17 '05 #15
Thanks for details Bob.

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Bob Grommes" <bo*@bobgrommes.com> wrote in message
news:%2******************@tk2msftngp13.phx.gbl...
I'm not sure I understand your question clearly, but StringBuilder is
generally used when you need to append many strings into a larger one. If
whatever operation you're doing doesn't require significant concatenation
to that data once it's obtained, then I would just put the contents into a
string in the first place.

That doesn't really impact the question of what you should do to get rid
of the resulting object when you're done with it. Whether the object is a
string or a StringBuilder the same principles apply; when you're done, in
most real world scenarios simply letting it go out of scope is fine
unless, as appears to be the case here, it is a shared object that won't
be needed for some time, in which case you could set it to null.

In the case of a StringBuilder if it's going to continue to be reused my
impulse would be to clear its buffer but not set it to null; that way
other processes don't have the slight overhead of newing up another
StringBuilder, but can simply use what's already there.

--Bob

SevDer wrote:
Hi Bob,

First, there are a lot of processing in the container object. It is being
used in ASP.NET by 4-8 threads and kept in Session variable. (I guess
this gives the main idea about the container object)

For using the string builder, we get the XML from a service at once. What
is the biggest advantage of StringBuilder against string when we do not
append any data, but just parse and grab data from it?

Thanks for your help

Nov 17 '05 #16
Hi Jon,

What I basically do is, checking some 3rd party information from multiple
sources where all have different responses and store these responses in
string field for parsing and when I am done, I want to clear them out to
save from memory. The containing object lives as long as the session and
kept in session which basically generates one of the most memory consuming
things (I guess).
Note: For sure these responses does not have to be in the main containing
class and can be kept in individual source response processing classes and
can be destructed along with that sub classes, but this is a rather old code
and I cannot make some conceptual changes to everything where I am trying to
optimize it as much as I can.

As a good example

MainSessionKeptObject
-stringfield1
-stringfield2
-many other fields/members

ThreadStarterMethod()
-> opens multiple threads

Each Thread updates their related stringfield.
======================================

When all the threads are done, I am now setting these stringfields to
"null", but I don't know if this will help in memory release.

Many thanks for all the information you provided

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
SevDer <se****@newsgroup.nospam> wrote:
The member variable lives relatively shorter than the object.
Objects lives along with the ASP.NET session, and it is the most
fundemental
object to the application.

And one important thing about that member variable is that, it is being
updated by thread(s).


That doesn't necessarily mean it has to be a member variable in that
class - there are other ways of sharing data between threads. I'd need
to know more about what you're doing to say how to go about it though.
Do you still suggest to reference it to "null"?


Only if it absolutely has to be a member variable of your long-lived
object.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 17 '05 #17
Hi Jon,

What I basically do is, checking some 3rd party information from multiple
sources where all have different responses and store these responses in
string field for parsing and when I am done, I want to clear them out to
save from memory. The containing object lives as long as the session and
kept in session which basically generates one of the most memory consuming
things (I guess).
Note: For sure these responses does not have to be in the main containing
class and can be kept in individual source response processing classes and
can be destructed along with that sub classes, but this is a rather old code
and I cannot make some conceptual changes to everything where I am trying to
optimize it as much as I can.

As a good example

MainSessionKeptObject
-stringfield1
-stringfield2
-many other fields/members

ThreadStarterMethod()
-> opens multiple threads

Each Thread updates their related stringfield.
======================================

When all the threads are done, I am now setting these stringfields to
"null", but I don't know if this will help in memory release.

Many thanks for all the information you provided

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
SevDer <se****@newsgroup.nospam> wrote:
The member variable lives relatively shorter than the object.
Objects lives along with the ASP.NET session, and it is the most
fundemental
object to the application.

And one important thing about that member variable is that, it is being
updated by thread(s).


That doesn't necessarily mean it has to be a member variable in that
class - there are other ways of sharing data between threads. I'd need
to know more about what you're doing to say how to go about it though.
Do you still suggest to reference it to "null"?


Only if it absolutely has to be a member variable of your long-lived
object.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 17 '05 #18
SevDer <se****@newsgroup.nospam> wrote:
What I basically do is, checking some 3rd party information from multiple
sources where all have different responses and store these responses in
string field for parsing and when I am done, I want to clear them out to
save from memory. The containing object lives as long as the session and
kept in session which basically generates one of the most memory consuming
things (I guess).
Note: For sure these responses does not have to be in the main containing
class and can be kept in individual source response processing classes and
can be destructed along with that sub classes, but this is a rather old code
and I cannot make some conceptual changes to everything where I am trying to
optimize it as much as I can.


Ah, right. If you're stuck with that design for external reasons,
that's fair enough - just set it to null. It might be worth adding a
comment to the effect that a redesign might be a good idea.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 17 '05 #19
SevDer <se****@newsgroup.nospam> wrote:
What I basically do is, checking some 3rd party information from multiple
sources where all have different responses and store these responses in
string field for parsing and when I am done, I want to clear them out to
save from memory. The containing object lives as long as the session and
kept in session which basically generates one of the most memory consuming
things (I guess).
Note: For sure these responses does not have to be in the main containing
class and can be kept in individual source response processing classes and
can be destructed along with that sub classes, but this is a rather old code
and I cannot make some conceptual changes to everything where I am trying to
optimize it as much as I can.


Ah, right. If you're stuck with that design for external reasons,
that's fair enough - just set it to null. It might be worth adding a
comment to the effect that a redesign might be a good idea.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 17 '05 #20
Thanks Jon.

But 1 final question: Will this help me to save some memory? I really have
doubts about that.

Thanks again.

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
SevDer <se****@newsgroup.nospam> wrote:
What I basically do is, checking some 3rd party information from multiple
sources where all have different responses and store these responses in
string field for parsing and when I am done, I want to clear them out to
save from memory. The containing object lives as long as the session and
kept in session which basically generates one of the most memory
consuming
things (I guess).
Note: For sure these responses does not have to be in the main containing
class and can be kept in individual source response processing classes
and
can be destructed along with that sub classes, but this is a rather old
code
and I cannot make some conceptual changes to everything where I am trying
to
optimize it as much as I can.


Ah, right. If you're stuck with that design for external reasons,
that's fair enough - just set it to null. It might be worth adding a
comment to the effect that a redesign might be a good idea.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 17 '05 #21
Thanks Jon.

But 1 final question: Will this help me to save some memory? I really have
doubts about that.

Thanks again.

--

SevDer
http://www.sevder.com
A new .NET Source For .NET Developers
"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
SevDer <se****@newsgroup.nospam> wrote:
What I basically do is, checking some 3rd party information from multiple
sources where all have different responses and store these responses in
string field for parsing and when I am done, I want to clear them out to
save from memory. The containing object lives as long as the session and
kept in session which basically generates one of the most memory
consuming
things (I guess).
Note: For sure these responses does not have to be in the main containing
class and can be kept in individual source response processing classes
and
can be destructed along with that sub classes, but this is a rather old
code
and I cannot make some conceptual changes to everything where I am trying
to
optimize it as much as I can.


Ah, right. If you're stuck with that design for external reasons,
that's fair enough - just set it to null. It might be worth adding a
comment to the effect that a redesign might be a good idea.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 17 '05 #22
SevDer <se****@newsgroup.nospam> wrote:
But 1 final question: Will this help me to save some memory? I really have
doubts about that.


It will mean the string can be garbage collected, which it wouldn't be
able to otherwise.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 17 '05 #23
SevDer <se****@newsgroup.nospam> wrote:
But 1 final question: Will this help me to save some memory? I really have
doubts about that.


It will mean the string can be garbage collected, which it wouldn't be
able to otherwise.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 17 '05 #24

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

Similar topics

12
by: Dave Theese | last post by:
Hello all, I'm in a poition of trying to justify use of the STL from a performance perspective. As a starting point, can anyone cite any benchmarks comparing vectors to plain old...
1
by: SevDer | last post by:
Thinking for performance & system resources; I have a string field inside a major object that contains big XML response. When I am done with it, I want to clear out this field to give some relief...
3
by: lovecreatesbea... | last post by:
Is case 2 better than case 1 in performance? For case 2 doesn't create and destroy objects inside a loop again and again for 1000 times. /*case 1: local definitions inside a loop*/ for (int i =...
30
by: galiorenye | last post by:
Hi, Given this code: A** ppA = new A*; A *pA = NULL; for(int i = 0; i < 10; ++i) { pA = ppA; //do something with pA
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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.