Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 34 of 34
Search took 0.02 seconds.
Search: Posts Made By: Shapeless
Forum: C++ Oct 19th, 2005, 5:13 AM
Replies: 20
Views: 543
Posted By Shapeless
the stl isnt as well desiged as i could be. many...

the stl isnt as well desiged as i could be.
many things are too large/have to large interfaces.
examples are iostreams as well as the string class.
Well of course that makes their flexibility ,...
Forum: C++ Sep 10th, 2005, 5:17 PM
Replies: 16
Views: 409
Posted By Shapeless
Well, bad idea. One function has only one job...

Well, bad idea. One function has only one job todo.your function "calculate" calculates and prints the output. And so return and do not show "the answer".
Forum: C++ Aug 7th, 2005, 6:30 PM
Replies: 9
Views: 279
Posted By Shapeless
hhm, this is not going to help you at all, but i...

hhm, this is not going to help you at all, but i would recommend to use standard headers.
so dont use

<iostream.h>
<stdlib.h>
<fstream.h>

but

<iostream>
Forum: Community Introductions Aug 6th, 2005, 8:18 PM
Replies: 10
Views: 314
Posted By Shapeless
welcome here, ;)

welcome here, ;)
Forum: C++ Aug 4th, 2005, 5:12 PM
Replies: 9
Views: 330
Posted By Shapeless
wrong.... old C-Headers are to use with an...

wrong....
old C-Headers are to use with an "pre"-'c'
that makes
#include<math.h>
to
#include<cmath>
like prolog said before
Forum: C++ Jul 24th, 2005, 9:36 PM
Replies: 16
Views: 667
Posted By Shapeless
ok, but i wasnt able to figure out that that...

ok, but i wasnt able to figure out that that didnt meant me.
well the boost libs are sometimes big, and but you are able to include just a few parts. but i think the perfomance and overhead-argument...
Forum: C++ Jul 24th, 2005, 7:24 AM
Replies: 16
Views: 667
Posted By Shapeless
I am sorry cerulean, but i think you (and maybe...

I am sorry cerulean, but i think you (and maybe the others) didnt understand the code.

1) i think you have no idea the code intern looks like!

my function has the benifit to every kind of...
Forum: C++ Jul 23rd, 2005, 7:21 PM
Replies: 16
Views: 667
Posted By Shapeless
I would say boost/algorithm/string/split.hpp is...

I would say boost/algorithm/string/split.hpp is what u need. its still no standart functions , but a lot of the boost libs will become standart in the 0x10 c++ standart and i m pretty sure that the...
Forum: C++ Jul 22nd, 2005, 5:29 PM
Replies: 10
Views: 300
Posted By Shapeless
there are several ports for gcc on for windows...

there are several ports for gcc on for windows machines. I think gcc is without a doubt the best compiler. but if u think of an compiler and ide or anotherone than gcc , again i would redcommend...
Forum: C++ Jul 19th, 2005, 6:10 AM
Replies: 7
Views: 386
Posted By Shapeless
thanks ,Cerulean anotherone is getchar(); and...

thanks ,Cerulean
anotherone is getchar();

and even if u dont feel like usuing a standart function use getch(); from conio.h instread of system



well, not always.. at my last job i had to use some...
Forum: C++ Jul 19th, 2005, 3:59 AM
Replies: 7
Views: 386
Posted By Shapeless
Well: full ack! i know what you are talking...

Well:
full ack!
i know what you are talking about.
unfortunately a lot of profs from many universities teach the way you
Forum: C++ Jul 19th, 2005, 3:51 AM
Replies: 4
Views: 205
Posted By Shapeless
Well do you have the borland compiler or the...

Well do you have the borland compiler or the Borland Ide (Cbuilder) ? that woult be important.
Well, i think dev-cpp also is the better choice. right now there is no huge difference for you...
Forum: C++ Jul 18th, 2005, 7:57 PM
Replies: 7
Views: 386
Posted By Shapeless
well, system is a standart functions, thats not...

well, system is a standart functions, thats not the catch...
I do belive that its always good to write source code as good as possible, in large projects, libs , in apps or just in test modules or...
Forum: C++ Jul 18th, 2005, 6:29 PM
Replies: 42
Views: 1,141
Posted By Shapeless
jepp :)

jepp :)
Forum: C++ Jul 18th, 2005, 5:55 PM
Replies: 42
Views: 1,141
Posted By Shapeless
Huh? <<<<----- hmm you said at the bottom there...

Huh?
<<<<-----
hmm you said at the bottom there are several "words"... thats what i meant...

well if u really want anotherone , well MingW is also a good choice!
Forum: C++ Jul 18th, 2005, 4:58 PM
Replies: 11
Views: 315
Posted By Shapeless
no you cant save it as an .exe u can just save...

no you cant save it as an .exe u can just save the source- object- and project files.
if compiling and linking is successfull , the ide will build the .exe which of course is in the same directory (...
Forum: C++ Jul 18th, 2005, 4:31 PM
Replies: 42
Views: 1,141
Posted By Shapeless
humm how about telling us about theese words :)

humm how about telling us about theese words :)
Forum: C++ Jul 18th, 2005, 4:23 PM
Replies: 7
Views: 386
Posted By Shapeless
Why shouldn't we use System();

Well this is not meant to be criticism , but i dont think it is that good to recommend system() at all, since this functions has much more cons than pros... well,of course, i am no expert but here...
Forum: C++ Jul 18th, 2005, 3:27 PM
Replies: 42
Views: 1,141
Posted By Shapeless
do u mean it compiles or it successfully finishes...

do u mean it compiles or it successfully finishes compiling ?
you can prove that by looking for an executable in the project/source-dir...

btw do not "delete" any returns. main is a functions which...
Forum: C++ Jul 18th, 2005, 3:13 PM
Replies: 11
Views: 315
Posted By Shapeless
//edit ---forget it--- //edit2 hmm the code seems...

//edit ---forget it---
//edit2 hmm the code seems to be right, so what does the compiler tell you why i doenst work..
any error messages ?
or does compiling work and u cant execute it? well in this...
Forum: C++ Jul 18th, 2005, 1:52 PM
Replies: 10
Views: 374
Posted By Shapeless
well i dont like it too much..and so i just ...

well i dont like it too much..and so i just wrote a base-template class to use.. u could just inherit from it and add the winsock( idoesnt have a windows-machine ) things as well as the save and...
Forum: C++ Jul 18th, 2005, 10:41 AM
Replies: 42
Views: 1,141
Posted By Shapeless
and since we all dislike system(); we prefer...

and since we all dislike system();
we prefer std::cin.get() or something like that
Forum: C++ Jul 18th, 2005, 10:25 AM
Replies: 42
Views: 1,141
Posted By Shapeless
im not sure about the strange behaviour in your...

im not sure about the strange behaviour in your case but plz check out what happends if u use standart c++ code
to do so just replace

#include<iostream.h> with

#include<iostream>
using namespace...
Forum: C++ Jul 17th, 2005, 7:55 PM
Replies: 10
Views: 374
Posted By Shapeless
i cant test the source since I'am not able to use...

i cant test the source since I'am not able to use winsock... I'll look through the code soon, because i had a similar prob in my C-times..... well, there are some things i'm interested in ... whats...
Forum: C++ Jul 17th, 2005, 7:36 AM
Replies: 25
Views: 636
Posted By Shapeless
i agree.. a clear readable dokumentation is...

i agree.. a clear readable dokumentation is important for big large projects but
i also think the code, should always also explain intself... so there will always be a person who is able to...
Forum: Coder's Corner Lounge Jul 16th, 2005, 10:38 AM
Replies: 77
Views: 2,398
Posted By Shapeless
hmm when i use my linux its a gentoo ... i like...

hmm when i use my linux its a gentoo ... i like the portage system and the other pros , we already "talked" about , like compiling the source like u need it ,....

(the rest of the time i use my good...
Forum: Community Introductions Jul 16th, 2005, 6:33 AM
Replies: 16
Views: 445
Posted By Shapeless
yes, it is german. @all,thanks for such a warm...

yes, it is german.
@all,thanks for such a warm welcome
Forum: Coder's Corner Lounge Jul 15th, 2005, 6:25 PM
Replies: 1,430
Views: 23,778
Posted By Shapeless
jackie brown ~sountrack

jackie brown ~sountrack
Forum: C++ Jul 15th, 2005, 6:07 PM
Replies: 13
Views: 374
Posted By Shapeless
thats right but the same syntax isnt everything u...

thats right but the same syntax isnt everything u have to look for,...
it is one thing to edit a part but its another one to rewrite it in another language even if the one is compatible to the other...
Forum: C++ Jul 15th, 2005, 4:58 PM
Replies: 25
Views: 636
Posted By Shapeless
i would also recommend thinking in c++ others...

i would also recommend thinking in c++
others could be ( if u are sure you really want a book an not just a toturial ( which of cause is for free but not worthless))
essential c++ / addison wesley...
Forum: Community Introductions Jul 15th, 2005, 4:31 PM
Replies: 16
Views: 445
Posted By Shapeless
well, my nick's story is.. kind of...

well, my nick's story is.. kind of embarrassing... i had another one before, but i jsut didnt like it anymore so i thought of another one , gut i had no idea at all so a wrote a little nick-generator...
Forum: C++ Jul 15th, 2005, 4:19 PM
Replies: 25
Views: 636
Posted By Shapeless
humm , i don really think the stroupi ("The C++...

humm , i don really think the stroupi ("The C++ Programming Language" - Bjarne Stroustrup.) is that good for a person , who starts c++..
Well, its a great reference, and as u said, for a serious...
Forum: Community Introductions Jul 15th, 2005, 4:11 PM
Replies: 16
Views: 445
Posted By Shapeless
just me

hi guys... huum.. i'am not sure what to say right here because i dunno how important such an introduction really is...

hmm some facts .. i think you will "find me", in the c++ section most of the...
Forum: C++ Jul 15th, 2005, 2:20 PM
Replies: 4
Views: 274
Posted By Shapeless
hmm i have made just a few experiences with qt ,...

hmm i have made just a few experiences with qt , but i'd prefer wxWidgets..
I think it's well designed and really straight forward... it also offers a huge collection of usefull things ... like...
Showing results 1 to 34 of 34

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 6:49 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC