|
-
Oct 26th, 2001, 12:26 PM
#1
Thread Starter
Addicted Member
C++ Nightmare
Ok this is a big question. What do you think is the most difficult thing to do in C++ and how do you do it\overcome it?
Right now for me its everything and I basicly try until I find documentation on how to do it......
Magiaus
Visual Basic 6.0 SP5
Visual C++ 6.0 SP5
The only sovereign you can allow to rule you is reason.
-
Oct 26th, 2001, 01:53 PM
#2
Member
Pointers screw with my head.
-
Oct 26th, 2001, 02:03 PM
#3
Thread Starter
Addicted Member
yeah mine too, i like being able to type ByVal and ByRef and just pass an array better but oh well
if you want the speed and power you have to mess with emm....
Magiaus
Visual Basic 6.0 SP5
Visual C++ 6.0 SP5
The only sovereign you can allow to rule you is reason.
-
Oct 26th, 2001, 03:59 PM
#4
PowerPoster
nothing.
c++ is logical, if you think about it, you will get it.
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
-
Oct 26th, 2001, 04:23 PM
#5
PowerPoster
nothing here except character arrays and strings
-
Oct 26th, 2001, 04:38 PM
#6
Thread Starter
Addicted Member
i think maybe i meant what do you think is the most omplex thing to deal with in a application that does something you pick what
like maybe it is a complex matrox to generate fractils or something i dunno
Magiaus
Visual Basic 6.0 SP5
Visual C++ 6.0 SP5
The only sovereign you can allow to rule you is reason.
-
Oct 26th, 2001, 04:48 PM
#7
PowerPoster
Originally posted by ZanM
i think maybe i meant what do you think is the most omplex thing to deal with in a application that does something you pick what
like maybe it is a complex matrox to generate fractils or something i dunno
I thing that STL, which already comes with C++, is the hardest part(like vectors, strings, etc.).
-
Oct 26th, 2001, 05:58 PM
#8
Fanatic Member
I agree with filby there.
-
Oct 26th, 2001, 06:14 PM
#9
Thread Starter
Addicted Member
pointers
I figured it out pointers are there because wait nope I lost it, I almost had it that time really I did....
Magiaus
Visual Basic 6.0 SP5
Visual C++ 6.0 SP5
The only sovereign you can allow to rule you is reason.
-
Oct 26th, 2001, 07:07 PM
#10
Frenzied Member
I really hate manipulating databases and making AX controls with C++. Maybe because i haven't tried to learn this well.
-
Oct 27th, 2001, 05:04 AM
#11
Debugging MFC apps that fail for no obvious reason. Like my app that hangs somewhere in an endless loop, but I have no idea where (not my code I think)
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Oct 27th, 2001, 05:58 AM
#12
transcendental analytic
When i first learnt C++ pointers was my nightmare until i overcame them. Now they are my friends, they provide the low level efficiency I need to optimize my algoritms, but they are also my enemies, they undermine object orientation, and is a source for many nasty bugs that are time consuming to debug. This compromise is worth it if you value runtime performance, otherways you could as well choose Java, but that's just something I don't recommend, because Java sucks.
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|