Category Archives: keyword
- Home
- Archive by Category "keyword" (Page 2)
- On
- By
- 0 Comment
- Categories: keyword, Keyword in Java
The short keyword in Java programming language
The short keyword in Java programming language In this tutorial, we learn about the short keyword in java programming language. The short keyword is a Java keyword used to declare a type of numeric variable. A short variable can hold a 16-bit integer number which ranges from -32,768 to 32767 Declaration short – in variable…
Read More- On
- By
- 0 Comment
- Categories: keyword, Keyword in Java
The void keyword in Java programming language
The void keyword in Java programming language In this tutorial, we will discuss The void keyword in java programming language The void keyword is a Java keyword. This keyword allows us to create methods which do not return a value. Which means void is a special type of keyword in Java as a void keyword…
Read More- On
- By
- 1 Comment
- Categories: keyword, Keyword in Java
The break keyword in Java programming language
The break keyword in Java programming language In this tutorial, we will discuss The break keyword in Java programming language. the break is a keyword in Java programming language which causes the loop to terminate or to exit execution of for loop, while loop, do-while loop and switch case statements. When the break statement is used…
Read More- On
- By
- 0 Comment
- Categories: keyword, Keyword in Java
The abstract keyword in Java language
The abstract keyword in Java language Here, we learn about The abstract keyword in Java language. The abstract is a keyword in Java programming language. it can be applied to class and methods when a class is declared as abstract it called as the abstract class. In other words, if a class has any abstract…
Read More