Java Data Types

datatypesinjava

Need of Data Types Data Types are used to store data temporarily in computer through a program The data type will specify the type of data that will... read more ?

Coding Standards and Naming conventions

Coding Standards(CS) and Naming conventions(NC) are suggestions given by sun(Oracle). CS and NC help developers to develop projects with more readability and understandability (adsbygoogle = window.adsbygoogle || []).push({});... read more ?

Top 10 uses of Java Keywords

Keyword: Keywords are predefined identifiers available directly throughout the JVM. They have a special meaning inside java source code and outside of comments and strings. For Example :... read more ?

Reading data from file using FIleInputStream

1.Reading the data from a file: FileInputStream class is used to read data from a file. It is two step process. Create  FileInputStream class object by using its... read more ?

Create Thread without extending Thread and implementing Runnable

Using AnonymousThread: package com.instanceofjava;   public class AnonymousThread {   public static void main(String[] args)     {         new Thread(){               public void run(){... read more ?

Top 7 Java 7 features

java+7

java 7 features with examples String in switch statements Type inference for generic instance creation. The try with resources Statement. Multiple exception handling System. Underscored in Numeric literals... read more ?

Select Menu