Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Java Articles
Page 438 of 450
How to set JAVA_HOME for Java in Linux?
Assuming you have installed Java in \usr\local\java\jdk directory −if you use bash as your shell, then you would add the following line to the end of your '.bashrc: export JAVA_HOME=\usr\local\java\jdk'
Read MoreHow to set JAVA_HOME for Java in Linux?
Assuming you have installed Java in \usr\local\java\jdk directory −if you use bash as your shell, then you would add the following line to the end of your '.bashrc: export JAVA_HOME=\usr\local\java\jdk'
Read MoreHow to set JAVA_HOME for Java in Mac OS?
Assuming you have installed Java in \usr\local\java\jdk directory −if you use bash as your shell, then you would add the following line to the end of your '.bashrc: export JAVA_HOME=\usr\local\java\jdk'
Read MoreHow to set JAVA_HOME for Java in Mac OS?
Assuming you have installed Java in \usr\local\java\jdk directory −if you use bash as your shell, then you would add the following line to the end of your '.bashrc: export JAVA_HOME=\usr\local\java\jdk'
Read MoreGlobal variables in Java
There is no global variables support in Java. Static variables can be used as an alternate solution for global variables.
Read MoreGlobal variables in Java
There is no global variables support in Java. Static variables can be used as an alternate solution for global variables.
Read MoreJava Variable Narrowing Example
Narrowing refers to passing a higher size data type like int to a lower size data type like short. It may lead to data loss. Casting is required for narrowing conversion. Following program output will be 44. public class MyFirstJavaProgram { public static void main(String []args) { int a = 300; byte b = (byte)a; // narrowing System.out.println(b); } }
Read MoreJava Variable Narrowing Example
Narrowing refers to passing a higher size data type like int to a lower size data type like short. It may lead to data loss. Casting is required for narrowing conversion. Following program output will be 44. public class MyFirstJavaProgram { public static void main(String []args) { int a = 300; byte b = (byte)a; // narrowing System.out.println(b); } }
Read MoreHow to put two public classes in a Java package.
Yes. The only condition is to have one public class in separate java file.
Read MoreHow to put two public classes in a Java package.
Yes. The only condition is to have one public class in separate java file.
Read More