しばらく前に、インターネット上の多くのユーザーがJavaScriptの基本的な理解を持っていない可能性があるため、JavaScriptとは何かを説明しました。(what is JavaScript)今日は、JavaScriptと同じではない人気のあるプログラミング言語であるJavaについて話すことにしました。
Javaプログラミング言語
それはあなたを驚かせるかもしれないし、驚かないかもしれませんが、それは真実です。それにもかかわらず(Nevertheless)、Javaプログラミング言語は非常に人気があり、今後数年間はこのようになると予想されます。これは、世界中で使用されている多目的言語であるためです。
Javaは人間とコンピューターの両方で読み取ることができるため、高級プログラミング言語と見なされていることを指摘しておく必要があります。英語ベースのコマンドに大きく依存しているため、強い支持を得ています。
英語(English)と同じように、Javaには、各プログラマーが従わなければならない一連のルールが付属しています。問題のルールは構文(Syntax)として知られています。コードは人間が理解できるように英語(English)で書かれており、実行されるとコンピューターが理解できるように数字に変換されます。
この言語の背後にある考え方は、WORAにあります。つまり、Write Once、RunAnywhereです。これは単に、コンパイルされたJavaコードが、再コンパイルを必要とせずに、サポートしているプラットフォームで実行される必要があることを意味します。
読む(Read):Rプログラミング言語とは何(What is the R programming language)ですか?
Javaの作成者は誰ですか?
Javaは元々 、SunMicrosystemsの(Sun)JamesGoslingが率いるチームによって90年代に作成されました(Microsystems)。技術の買収に追いついていない人のために、SunMicrosystemsは現在(Sun)Oracleが所有しています。これはJavaにも(Java)当てはまり(Microsystems)ます。
言語の初期の開発では、チームはモバイルデバイス用のツールの作成に重点を置いていましたが、1996年にJavaのバージョン1.0が一般公開されたとき、それはすぐに変わりました。もの。たとえば、Web開発、モバイルデバイス用のビデオゲームの作成などに使用されます。
何年にもわたって、Javaにはいくつかの更新があり、執筆時点ではバージョン15であり、1996年の元のリリースよりもはるかに優れています。
読む(Read):NetbeansIDEは新時代のプログラミング言語です。
今すぐJavaを使うべき理由
信頼性:長年にわたってJavaに追加された最高のものの1つは、オブジェクト指向プログラミングとして知られているものです。(Java)これは、プログラマーがミスを犯すたびに発生するエラーを制限するために導入されました。これは、最高の状態でも発生することです。今日、Java言語は非常に信頼性が高いため、人気があります。
セキュリティ:この言語は、セキュリティを念頭に置いてゼロから構築されました。これは、Javaが元々、ワイヤレスネットワークを介して情報を交換するモバイルデバイス用に設計されていたためです。これを書いている時点では、Javaは世界で最も安全なプログラミング言語の1つであると信じています。
使いやすさ:プログラミング言語が大衆に愛されるためには、使いやすいものでなければなりません。それこそがJavaがもたらすものです。現在、Javaの基本原則はC ++から派生していますが、C ++は非常に複雑になる可能性があるため、特に新しいユーザーにとっては、まったく同じではありません。それでも、その使いやすさにもかかわらず、Pythonはこの点で一歩上だと信じています。
すべてのプラットフォームで動作:開発者とプログラマーが作業を行うために単一のオペレーティングシステムを使用することを余儀なくされている場合、使用している言語は十分ではありません。ありがたいことに、Javaは複数のプラットフォームでうまく機能し、これにはWindows、Linux、Macなどが含まれます。
Javaコードの例
ほとんどのプログラミング言語と同様に、Hello Worldから始める必要があります。これは、まさに今私たちがやろうとしていることです。次のコード例は、それを実行する方法です。
public class MyClass { public static void main(String[] args) { System.out.println("Hello World"); } }
コメントはどうですか?はい、コードにコメントを残すことができます。そのタスクを実行する方法を見てみましょう。
// This is a comment System.out.println("Hello World");
The overall code, then, should look like this:
public class MyClass {
public static void main(String[] args) {
// This is a comment
System.out.println("Hello World");
}
}
これらは基本的なことですが、時間が経つにつれて、他の何千ものように、 Javaでのコーディングのエキスパートになると確信しています。
初心者向けのわかりやすい投稿を見つけていただければ幸いです。
What is Java Programming language? Code examples
A while back we explаined what is JavaScript since a lot of users on the internet might not have a basic understanding of it. Today, we have decided to talk about Java, a popular programming language that is not the same as JavaScript.
Java Programming language
That may or may not surprise you, but it is the truth. Nevertheless, the Java programming language is very popular and we expect it to be this way for multiple years to come. This is because it is a multipurpose language that is used everywhere around the world.
We should point out that Java is considered a high-level programming language because it can be read by both humans and computers. It relies heavily on English-based commands, which is one of the reasons why it has garnered a strong following.
In the same way as English, Java comes with a set of rules that each programmer must follow. The rules in question are known as Syntax. The code is written in English for humans to understand, and then when executed, it is converted to numerals for computers to understand.
The idea behind the language is to WORA, which means, Write Once, Run Anywhere. It simply means that a compiled Java code should run on any supporting platform without the need for recompilation.
Read: What is the R programming language?
Who are the creators of Java?
Java was originally created in the 90s by a team lead by James Gosling at Sun Microsystems. For those who haven’t been keeping up with tech acquisitions, Sun Microsystems is now owned by Oracle, and that goes for Java as well.
In the early development of the language, the team was focusing on creating a tool for mobile devices, but that quickly changed when version 1.0 of Java was released for public consumption in the year 1996. These days, the language is used for a plethora of things. For example, it is used for web development, the creation of video games for mobile devices, and much more.
Over the years, Java has seen several updates, and at the time of writing, it is at version 15, which is far superior to the original release back in 1996.
Read: Netbeans IDE is a new-age Programming Language.
Why you should use Java right now
Reliability: One of the best additions to Java over the years, is something known as object-oriented programming. It was introduced to limit errors made by programmers whenever they make mistakes, and this is something that happens even with the best of the bunch. Today, the Java language is very reliable, hence its popularity.
Security: This language was built from the ground-up with security in mind. The reason for this was because Java was originally designed for mobile devices that would eventually exchange information over a wireless network. At the time of writing, we believe Java is one of the most secure programming languages in the world.
Ease of use: For a programming language to be loved by the masses, it should be easy to use, and that is exactly what Java brings to the table. Now, the basic principles of Java have derived from C++, but they are not exactly the same since C++ can be quite complex, especially for new users. Still, despite its ease of use, we believe Python is a step above in this regard.
Works on all platforms: If developers and programmers are forced to use a single operating system to get work done, then that language they’re using is not good enough. Thankfully, we can say for certain that Java works wonderfully across multiple platforms, and this includes Windows, Linux, Mac, and more.
Java Code examples
As with most programming languages, you should begin with Hello World, and that is exactly what we’re going to do right now. The following code example is how to get it done:
public class MyClass { public static void main(String[] args) { System.out.println("Hello World"); } }
What about comments? Yes, you can leave a comment in your code. Let us look at how to accomplish that task:
// This is a comment System.out.println("Hello World");
The overall code, then, should look like this:
public class MyClass {
public static void main(String[] args) {
// This is a comment
System.out.println("Hello World");
}
}
These are just the basics, but as time goes by, we are sure you will become an expert at coding in Java, like thousands of others.
We hope you find the post for beginners, easy to understand.