Java – User friendly Tech help

Learn all about Java

n

Lets learn some of the basic and critical rules that we should know as JAVA developers. Being aware of a single shortcoming within yourself is far more useful than being aware of a thousand in someone else. 1. Name of Class should start with uppercase letter.Example:- MyFirstClass rather than myfirstclass2.Methods and variables of class should start […]

n

Posted in Java Tagged java

n

Problem:- How to create a executable JAR for testng class using intellij + gradle.Tool stack :– Intellij (IDE) + Gradle (Build tool) + TestNg (Testing framework) Share more learn more  Fb, G+,Twitter  GITHUB for complete code Step1:– Create a basic java class to display “HelloBuild!”, execution using TestNG. public class TestBuild { @Test public void test() { […]

n

Posted in Java Tagged java

n

Error:- java: strings in switch are not supported in -source 1.5  (use -source 7 or higher to enable strings in switch) Solution:-Why this error, as we are trying to access feature of java(in our case switch statements) using java 1.5 which is actually supported in higher version of java (7 in our case).IDE used is Intellij.Step1:-File > […]

n

Posted in Java Tagged java

n

We started with Array’s in Java and moved to ArrayList, today we would be focusing on Hash Table’s in Java. Further we would be comparing Hast Table with Hash Map. HashTable for happy living  What is a Hash Table? A Hashtable (is a data structure) is similar to ArrayList but here we don’t directly use […]

n

Posted in Java Tagged java

n

We are already aware that in Java, array size are of fixed-size. Meaning that we have to assign a size to an array, which we cannot increase or decrease.Therefore to change the size, we have to make a new array and copy the data that we want – which is inefficient and a painful technique.To […]

n

Posted in Java Tagged java

n

What is an Array?An array is storehouse or we can say collection of similar type of data type.It is a data structure where we store similar elements. We can store only fixed set of elements in a java array(solution is ArrayList in Java) unlike vbscript where we can have dynamic arrays using Redim keyword.“Stop being […]

n

Posted in Java Tagged java

n

Java is a strongly typed programming language unlike Vbscript,Perl.In novice terms it means that all the variables in the Java programming language ought to have a particular data type.Example we cannot use a variable say “xyz” in the code before declaring this like:- String xyz;What is a Variable?Variable is the name given to the reserved […]

n

Posted in Java Tagged java

n

JDK, JRE and JVM are core concepts of Java programming language. As a novice in this language we should try to comprehend these concepts to visualize how it works logically.For more updates do follow us on Facebook,Twitter or Google+ Java Development Kit (JDK) consists of tools needed to create the Java programs,like Java libraries, Java […]

n

Posted in Java Tagged java

n

Have faith, love and courage to learn and share with others.That is what we at uftHelp believe in.We are starting this series of tutorials with focus on JAVA programming language.Do follow us on Fb,G+,Twitter for more updates. History:-It kick-started in 1991, when a group of Sun Microsystem engineers team (called as Green Team, led by James Gosling) put up their efforts […]

n

Posted in Java Tagged java

n

What is Static Keyword in Java? Static means a field or an method that belongs to the class, rather than to an instance of the class.In simple terms, it means that we can call a static method/field even without creating the object of a  class to which they belongs!.We can have a static method or […]

n

Posted in Java Tagged java

Was this article helpful?
YesNo

Similar Posts