Best programming language to learn?
Watch this thread
Serentonin
Badges:
16
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#1
I'm fairly okay with python, and while I will continue with it, I wanted to pick something new up as a new challenge as my uni workload is quite low this term...was thinking C++, but does anyone have any recommendations for anything that would be more useful?
Thanks.
Thanks.
0
reply
ArafH
Badges:
1
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#2
Padwas
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#3
SorryInAdvance
Badges:
11
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#4
Report
#4
We were learning Haskell for the introduction course for computing - it's a bit weird, it's purely functional (controlled side affects) so it's fairly niche- but it's so cool!!!
0
reply
FireGarden
Badges:
14
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#5
Report
#5
C/C++ would be my suggestion. In particular, C++ if you've got some familiarity with the OOP concepts from Python. They're the most used/widespread languages, which have had a lot of influence on many others (a lot of javascript looks identical to C!).
1
reply
VisualKiddy
Badges:
2
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#6
Padwas
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#7
Report
#7
(Original post by VisualKiddy)
Yeah, C++ is so much better than VB.net for an amateur who wants to make games.
Yeah, C++ is so much better than VB.net for an amateur who wants to make games.

0
reply
Jarred
Badges:
18
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#8
Serentonin
Badges:
16
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#9
(Original post by FireGarden)
C/C++ would be my suggestion. In particular, C++ if you've got some familiarity with the OOP concepts from Python. They're the most used/widespread languages, which have had a lot of influence on many others (a lot of javascript looks identical to C!).
C/C++ would be my suggestion. In particular, C++ if you've got some familiarity with the OOP concepts from Python. They're the most used/widespread languages, which have had a lot of influence on many others (a lot of javascript looks identical to C!).
a) Being pretty much the only person who replied to actually read my post
b) Actually explaining your answer.
Probably a stupid question, pros and cons of C vs C++?
0
reply
FireGarden
Badges:
14
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#10
Report
#10
(Original post by Serentonin)
Thanks for
a) Being pretty much the only person who replied to actually read my post
b) Actually explaining your answer.
Probably a stupid question, pros and cons of C vs C++?
Thanks for
a) Being pretty much the only person who replied to actually read my post
b) Actually explaining your answer.
Probably a stupid question, pros and cons of C vs C++?
My disclaimer is that I strictly only know C to a certain competency, and 'know of' C++; So I'm going to answer essentially "The pros and cons of C, and hence to some extent its related languages", and hope that it's still helpful.
Pros of C:
It is a powerful compiled language, with a lot of cross-platform capability. Literally compiling the same source code on a different machine will probably get it to run. By 'powerful', I mean it does.. just about anything. The OS UNIX was/is basically entirely C, and most software today uses C or some variation (C++, C#, Objective C), the last is what iPad and iPhone software is written in. I found it pretty straightforward to learn, and lots of resources if anything became a problem. As i said in my previous post, it has had a lot of influence on other languages - particularly syntax, so learning another language will be easier from this base knowledge. The compiled thing means the program you write will run stand-alone (in contrast to say, Java, which needs a runtime environment, or python, which needs an interpreter), and as a consequence, are faster. Lots of useful libraries around, too.
Cons of C:
It might do 'almost everything', but that isn't near a guarantee that it's a good idea! Some things are better suited to other languages with a different focus; C is a procedural language. In contrast, C++ is object oriented; the difference being in how they can handle your data. "Objects" allow the programmer to deal with the relationships between their data much more 'humanly' than other languages. I have no idea what you'd like to do with it, but I shall say everything I have ever done runs inside a console window. The package I use (Xcode) doesn't really allow much help for GUI programs; maybe other development environments will make this easier, but I don't know! In general though, there aren't too many cons, unless you have something specific in mind. Such as, if you were going to write smallish programs to run on a website for various tasks, you'd never use one of these languages! you'd use javascript, PERL, PHP, or something along those lines (i.e., designed for the task). The upshot again is that javascript in particular has essentially identical syntax to C for certain things.
This is all I can really think of off the top of my head right now.. If you have any more questions though, I'm happy to answer as best I can!
0
reply
VisualKiddy
Badges:
2
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#11
Report
#11
(Original post by Padwas)
yes it is but of course i have no idea what I'm talking about with 6 years programming experience lol
yes it is but of course i have no idea what I'm talking about with 6 years programming experience lol
0
reply
Psyk
Badges:
16
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#12
Report
#12
VB has a bad reputation. It's a perfectly valid and useful language for all sorts of development. Modern VB is pretty much equivalent to C#, mostly just different syntax. The only thing that makes it more beginner friendly is that the syntax looks slightly more like English.
(Original post by FireGarden)
Haha! That's ok!
My disclaimer is that I strictly only know C to a certain competency, and 'know of' C++; So I'm going to answer essentially "The pros and cons of C, and hence to some extent its related languages", and hope that it's still helpful.
Pros of C:
It is a powerful compiled language, with a lot of cross-platform capability. Literally compiling the same source code on a different machine will probably get it to run. By 'powerful', I mean it does.. just about anything. The OS UNIX was/is basically entirely C, and most software today uses C or some variation (C++, C#, Objective C), the last is what iPad and iPhone software is written in. I found it pretty straightforward to learn, and lots of resources if anything became a problem. As i said in my previous post, it has had a lot of influence on other languages - particularly syntax, so learning another language will be easier from this base knowledge. The compiled thing means the program you write will run stand-alone (in contrast to say, Java, which needs a runtime environment, or python, which needs an interpreter), and as a consequence, are faster. Lots of useful libraries around, too.
Cons of C:
It might do 'almost everything', but that isn't near a guarantee that it's a good idea! Some things are better suited to other languages with a different focus; C is a procedural language. In contrast, C++ is object oriented; the difference being in how they can handle your data. "Objects" allow the programmer to deal with the relationships between their data much more 'humanly' than other languages. I have no idea what you'd like to do with it, but I shall say everything I have ever done runs inside a console window. The package I use (Xcode) doesn't really allow much help for GUI programs; maybe other development environments will make this easier, but I don't know! In general though, there aren't too many cons, unless you have something specific in mind. Such as, if you were going to write smallish programs to run on a website for various tasks, you'd never use one of these languages! you'd use javascript, PERL, PHP, or something along those lines (i.e., designed for the task). The upshot again is that javascript in particular has essentially identical syntax to C for certain things.
This is all I can really think of off the top of my head right now.. If you have any more questions though, I'm happy to answer as best I can!
Haha! That's ok!
My disclaimer is that I strictly only know C to a certain competency, and 'know of' C++; So I'm going to answer essentially "The pros and cons of C, and hence to some extent its related languages", and hope that it's still helpful.
Pros of C:
It is a powerful compiled language, with a lot of cross-platform capability. Literally compiling the same source code on a different machine will probably get it to run. By 'powerful', I mean it does.. just about anything. The OS UNIX was/is basically entirely C, and most software today uses C or some variation (C++, C#, Objective C), the last is what iPad and iPhone software is written in. I found it pretty straightforward to learn, and lots of resources if anything became a problem. As i said in my previous post, it has had a lot of influence on other languages - particularly syntax, so learning another language will be easier from this base knowledge. The compiled thing means the program you write will run stand-alone (in contrast to say, Java, which needs a runtime environment, or python, which needs an interpreter), and as a consequence, are faster. Lots of useful libraries around, too.
Cons of C:
It might do 'almost everything', but that isn't near a guarantee that it's a good idea! Some things are better suited to other languages with a different focus; C is a procedural language. In contrast, C++ is object oriented; the difference being in how they can handle your data. "Objects" allow the programmer to deal with the relationships between their data much more 'humanly' than other languages. I have no idea what you'd like to do with it, but I shall say everything I have ever done runs inside a console window. The package I use (Xcode) doesn't really allow much help for GUI programs; maybe other development environments will make this easier, but I don't know! In general though, there aren't too many cons, unless you have something specific in mind. Such as, if you were going to write smallish programs to run on a website for various tasks, you'd never use one of these languages! you'd use javascript, PERL, PHP, or something along those lines (i.e., designed for the task). The upshot again is that javascript in particular has essentially identical syntax to C for certain things.
This is all I can really think of off the top of my head right now.. If you have any more questions though, I'm happy to answer as best I can!
0
reply
Chrosson
Badges:
13
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#13
Report
#13
(Original post by Serentonin)
I'm fairly okay with python, and while I will continue with it, I wanted to pick something new up as a new challenge as my uni workload is quite low this term...was thinking C++, but does anyone have any recommendations for anything that would be more useful?
Thanks.
I'm fairly okay with python, and while I will continue with it, I wanted to pick something new up as a new challenge as my uni workload is quite low this term...was thinking C++, but does anyone have any recommendations for anything that would be more useful?
Thanks.
I.e. you load the compiled C code like a normal module and call functions you've registered.
Gives you some C and some understanding of how you might implement performance critical bits of code in Python, or interface with libraries that only have a C interface.
Though it's worth noting that in practice you shouldn't do it for performance reasons until after profiling!
0
reply
John Stuart Mill
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#14
Potally_Tissed
Badges:
19
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#15
John Stuart Mill
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#16
Report
#16
(Original post by Padwas)
yes it is but of course i have no idea what I'm talking about with 6 years programming experience lol
yes it is but of course i have no idea what I'm talking about with 6 years programming experience lol
0
reply
Padwas
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#17
Report
#17
(Original post by John Stuart Mill)
Sorry for someone with 6 years experience you're clueless, VB is a horrible language for learning anything and teaches crappy conventions.
Sorry for someone with 6 years experience you're clueless, VB is a horrible language for learning anything and teaches crappy conventions.
0
reply
John Stuart Mill
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#18
Report
#18
(Original post by Padwas)
did me fine
did me fine
0
reply
INTit
Badges:
17
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#19
Report
#19
(Original post by John Stuart Mill)
'fine' Java or even C# would still be better, VB should die it's a piece of crap
'fine' Java or even C# would still be better, VB should die it's a piece of crap
Op I would go with c# to start with then learn c++ for 3d game development.
C++ has a steep learning curve for a beginner. Just getting anything graphical together is a fair bit of work.
C# will be good to know for general purpose programming(and employability) and will reduce the learning curve for c++
0
reply
John Stuart Mill
Badges:
3
Rep:
?
You'll earn badges for being active around the site. Rep gems come when your posts are rated by other community members.
#20
Report
#20
(Original post by INTit)
There's nothing wrong with modern vb.
Op I would go with c# to start with then learn c++ for 3d game development.
C++ has a steep learning curve for a beginner. Just getting anything graphical together is a fair bit of work.
C# will be useful for general purpose programming and will reduce the learning curve for c++
There's nothing wrong with modern vb.
Op I would go with c# to start with then learn c++ for 3d game development.
C++ has a steep learning curve for a beginner. Just getting anything graphical together is a fair bit of work.
C# will be useful for general purpose programming and will reduce the learning curve for c++
0
reply
X
Quick Reply
Back
to top
to top