We have a C++ project based on Linux system, so we need a good Editor but not Visual Studio since the C++ is for Linux. And, we do not want to use Ubuntu but just use Windows 7. So we decide to download Eclipse for C/C++ Windows Edition from Eclipse official site. (Note: our Windows [Read More ...]
Oracle release Java 7 Standard Edition in 2011 July 28! This is a big news for programmers. “We are excited to announce Java 7 is released! With years of hard work from our dedicated engineers, the largest team ever to work on the Java language and platform, as well as valuable input from the Java [Read More ...]
OK, let us continue to install Java Runtime Environment: After you downloaded the Java file, our file name is “jre-6u25-windows-x64.exe” (IF you downloaded a 32-bit Java program, you should have different name, for example, “chromeinstall-6u25.exe” if you used Chrome browser) Double click the “jre-6u25-windows-x64.exe” file to start the installation of Java: Click “Install” button: OK, [Read More ...]
This time we will try to install a Java IDE tool. For a Java beginner who never used Java development tools, to install a Java development environment is not that easy which you think. But before we write any code, we need a tool to write the code, Simply, you can use anyone text editor [Read More ...]
If you are learning C, C++ or even Java, the first code example might be similar, they are all a example named Hello World. We found a interesting article which collects all Hello World example in different languages. For example: In C: #include <stdio.h> int main(void) { printf("Hello world\n"); return 0; } In C++: #include [Read More ...]
Who made Java ? James Gosling, Mike Sheridan and Patrick Naughton started to create the Java language project in June 1991. Why created Java language project ? Java was originally designed for interactive television, but seems it is “Over Qualified”, it is too advance for television industry at the time. Gosling aimed to implement a [Read More ...]