Core Java | Why should you not use the Exception class? | Use of throws in Exception Handling

  Рет қаралды 133

Learn with Professor

Learn with Professor

Күн бұрын

Core Java | Why should you not use the Exception class? | Use of throws in Exception Handling
#corejava #tamilkaruvoolam #exceptionhandling
Source Code:
public class ArithmeticLibrary {
public static int add(int a, int b){
return (a+b);
}
public static double divide(int a, int b) throws ArithmeticException{
return (a/b);
}
public static int subtract(int a, int b){
return (a-b);
}
public static int multiply(int a, int b){
return (a*b);
}
}
public class ArithmeticLibTest {
public static void main(String[] args) {
int a = 10, b = 0;
System.out.println("The Addition is: "+ArithmeticLibrary.add(a, b));
try{
System.out.println("The Division is: "+ArithmeticLibrary.divide(a, b));
}catch(ArithmeticException ae){
System.out.println("Infinite");
}
System.out.println("The subtraction is: "+ArithmeticLibrary.subtract(a, b));
System.out.println("The multiplication is: "+ArithmeticLibrary.multiply(a, b));
}
}

Пікірлер
Core Java | Checked Vs Unchecked Exceptions | How to use in your Code?
8:45
Learn with Professor
Рет қаралды 1,7 М.
Fundamental Concepts of Object Oriented Programming
9:16
Computer Science Lessons
Рет қаралды 997 М.
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
EASIEST Site-to-Site VPN / SD WAN - UniFi Site Magic
17:20
SpaceRex
Рет қаралды 1,2 М.
Intro to Java Programming - Course for Absolute Beginners
3:48:25
freeCodeCamp.org
Рет қаралды 3,7 МЛН
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 297 М.
What is Servlet? in Tamil | Advance Java | DinaTechy
18:25
DinaTechy
Рет қаралды 3,5 М.
Core Java | Different Methods for Formatting String and Format Specifiers
7:21
Better Java Streams with Gatherers - JEP Cafe #23
1:13:32
Pre-Algebra Final Exam Review
1:56:08
The Organic Chemistry Tutor
Рет қаралды 334 М.
Think Fast, Talk Smart: Communication Techniques
58:20
Stanford Graduate School of Business
Рет қаралды 44 МЛН
Create JAR from a Java Project using NetBeans IDE and Maven
8:15
Learn with Professor
Рет қаралды 1,4 М.
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.