I agree and those are my thoughts. The previous guy did so much like this that I figured there might be something I am totaly unaware of.
Thanks for taking the time to reply.
Ok. but that is a real heavy weight class. My application does nothing but send one type of data and never receives anything. And it does it ten times per millisecond so I want something as simple...
An engineer just left our project and now I am working on his project. In his dot H files there are several routines where he writes the executable code in the declaration rather than the dot C or...
Class C_Server posts the listen and when the client solicits a connection the accept() method creates an instance of C_Server_Send to carry on the conversation with the client. That object is newed...
The concept that TCP does a good job packetizing make great sense. The Microsoft people has been dealing with that for quite a long time and should have it down by now.
...
Yes, you are correct. I just went back and looked. There are couple of significant fixed arrays (not dynamic as I stated earlier), one of a structure with 500K entries. (yes, absolutely required) ...
This application does not use any recursion. There are two large arrays that are are allocated dynamically after the program prompts for a a configuration file name and reads it. The stack overflow...
At some point my program was running fine with no memory leaks and doing what I wanted. Then I decided it would be cleaner to create a rather complex class as static. I declared it the .h file of...
Because I tried to change another class from dynamic (i.e. new) to static and I immediatly started getting stackoverlow on startup. So I decided to have all the classes created dynamically. Any...
At step 2 I ask: What Properties Window? If I right click the class name itself, there is no Properties selection. If I go to the Visual Studio tool bar and...
To All,
I participate in missions here at work that take prioirty over everything. There are a number of points made recently that I don't fully understand and need to think about for a while. I...