Was als nächstes Lernen - C++ oder JavaScript?

Devanther

Top Contributor
Hallo,

Welche dieser beiden Sprachen würdet ihr mir empfehlen?
Welche Sprache ist wichtiger?
Welche Sprache wird stärker nachgefragt auf dem Arbeitsamt?
 
M

Mart

Gast
versuch mal in einem restaurant für jeden kunden sein lieblings gericht auf die speise karte zu tun, dann hast du plötzlich eine speisekarte die riesig ist ;)

also richte dich nicht nach anderen, sollange die sprache halbwegs modern ist solltest du was finden
 
K

kneitzel

Gast
Also ich kann Dir gerade nicht folgen.

Wenn es um Dinge geht, die Du Dir selbst aneignen willst, dann solltest Du Dir überlegen, was Du machen willst und was Dir mehr Spass machen dürfte. Dann fällt Dir das lernen leichter, d.h. Du wirst besser sein. Und so Du Dich nicht zu doof anstellst, dann bekommst Du da auch einen Job (Und das ganz ohne Arbeitsamt. Software Entwickler und Arbeitsamt - das passt irgendwie nicht wirklich zusammen....)

Daher: In welchen Bereich möchtest Du Dich denn hinein entwickeln? Soll es mehr Backend sein? Ggf. Systemnahe DInge? Dann wäre C++ besser. Willst DU auch Frontends machen und so? Dann ist JavaScript mit entsprechenden Frameworks besser.
 

Devanther

Top Contributor
Ich interessiere mich für beides gleichermaßen.

C++ ist interessant weil es Pointer, SmartPointer, Referenzen, unterschiedliche Konstruktoren hat....
und JavaScript ist auch sehr vielseitig.
 
M

Mart

Gast
javascript hat genauso auch referenzen und objekte auch bekannt als javascript object notation bzw json

wenn du halt eine "rundumschlag" sprache willst wären auch wieder beide gut
es gibt javascript auf dem server und frontend

bei unreal engine zb wird auch front und backend in c++ geschrieben,
deswegen solltest du eine sprache suchen die dir taugt
 

KonradN

Super-Moderator
Mitarbeiter
kein Spam, sondern ein echter Rat :) Bei Bedarf kann ich den Link entfernen.
Naja - es ist halt etwas dubios. Jemand, der im Java Forum aktiv ist und Java schon gelernt hat, fragt ja, was er als nächstes lernen soll. Da ist dann Java als Antwort nicht wirklich sinnvoll. Da wir hier auch regelmäßig Spam bekommen, der ähnlich aussieht, kommt es zu solchen Unterstellungen - gerade bei neuen Accounts.
 

White_Fox

Top Contributor
Auch wenn der Thread nun schon etwas älter ist: Passender wäre gewesen, erstmal so richtig programmieren zu lernen. Wenn man die grundlegenen Syntaxelemente kennt geht es doch erst richtig los...Entwurfsmuster, Softwarearchitektur, usw.
Das ist doch weitaus wichtiger als zig Sprachen auflisten zu können die man angeblich kann.
 

gulshan212

Mitglied
Hello this is Gulshan Negi
Well, Java and C++ are both important and widely used programming languages, and both have their own advantages and applications. Your specific objectives, preferences, and the context in which you intend to use the language all play a role in determining which option to select.
C++ may be a good choice due to its performance, efficiency, and low-level capabilities if you are interested in systems programming, game development, embedded systems, or high-performance computing.
Java, on the other hand, is a language that is widely used for server-side programming, web development, Android app development, enterprise-level applications, and server-side programming due to its simplicity, platform independence, and robustness.
I hope it is clear now.
Thanks
 

Robert Zenz

Top Contributor
Well, Java and C++ are both important and widely used programming languages, and both have their own advantages and applications. Your specific objectives, preferences, and the context in which you intend to use the language all play a role in determining which option to select.
The question was between C++ and JavaScript.

C++ may be a good choice due to its performance, efficiency, and low-level capabilities if you are interested in systems programming, game development, embedded systems, or high-performance computing.
Java is also used for all of those.

Java, on the other hand, is a language that is widely used for server-side programming, web development, Android app development, enterprise-level applications, and server-side programming due to its simplicity, platform independence, and robustness.
C++ is also used for all of those.

If you've got the question "Java or C++" in a hobby context, the question is better formed as "Would you like to just learn OOP? Or would you like to learn OOP with a hard focus on how the system manages resources?". There are also a few key differences that came with the latest C++ versions, if I'm not incorrect, for example that C++ seems to move to a ownership based memory management similar to hat of Rust. In regard to that, the main difference, besides the syntax, is memory management. In Java you can not care for the most part, while in C++ it is a hard requirement.

Regarding the question "C++ or JavaScript", you should always go C++ because it will provide you with a deeper understanding of how the machine you write code on works. JavaScript is also a never-ending tale of edge-cases and engine-depending behaviors paired with a not so great language. For example, the answer to the question "How to concenate Strings effectively in JavaScript?" is "Use + and hope the engine implements it properly.".
 

Ähnliche Java Themen

Neue Themen


Oben