Core Java | Checked Vs Unchecked Exceptions | How to use in your Code?

  Рет қаралды 1,719

Learn with Professor

Learn with Professor

Күн бұрын

Core Java | Checked Vs Unchecked Exceptions | How to use in your Code?
#corejava #tamilkaruvoolam #exceptionhandling
Checked - Compile time (FileNotFoundException, MalformedURLException)
Unchecked - Runtime (ArithmeticException, NullPointerException)
Source Code-1 for Unchecked Exception
/**
Demo Class for Exception Handling
@author Anthoniraj Amalanathan
@since 30-Sep-2022
*/
class ArithmeticLibrary {
public static double divide(int a, int b) {
return (a / b);
}
}
public class ArithmeticLibraryTest {
public static void main(String[] args) {
try {
System.out.println(ArithmeticLibrary.divide(10, 0)); // Unchecked
} catch (ArithmeticException ae) {
System.out.println(ae.toString());
}
}
}
Source Code-2 for Checked Exception
public class URLTest {
public static void main(String arg[]) {
try {
URL url = new URL("www.anthoniraj.in");
/* reading html page */
} catch (MalformedURLException e) {
System.out.println(e.toString());
}
}
}

Пікірлер: 6
@mosesfrancis4976
@mosesfrancis4976 2 жыл бұрын
வணக்கம் தோழர், Java Swing Program (GUI) எழுத VS CODE EDITOR, INTELLIJ இரண்டில் எது எளிதானது?
@learnwithprofessor
@learnwithprofessor 2 жыл бұрын
VS code is always easy to use. NetBeans has an drag and drop GUI editor. I Would recommend using vs code.IntelliJ is not free IDE (only community edition with core Java editor is available)
@mosesfrancis4976
@mosesfrancis4976 2 жыл бұрын
@@learnwithprofessor Is there in VS code drag and drop GUI like swing builder?
@learnwithprofessor
@learnwithprofessor 2 жыл бұрын
@@mosesfrancis4976 unfortunately not available. For real time project GUI development please use netbeans.
@mosesfrancis4976
@mosesfrancis4976 2 жыл бұрын
@@learnwithprofessor OK. Thank you so.
@gametamizha3180
@gametamizha3180 2 жыл бұрын
Sir please one request... spring boot use panni login, user registration form onnu create panni video podunga sir( with server kuda connect pandra madri)
Java Records - A Plain Data Carriers!
8:29
Learn with Professor
Рет қаралды 204
Checked vs. Unchecked Exceptions in Java Tutorial - What's The Difference?
10:14
Andro, ELMAN, TONI, MONA - Зари (Official Audio)
2:53
RAAVA MUSIC
Рет қаралды 8 МЛН
Checked and Unchecked Exceptions in Java - Java Programming
16:06
Will Tollefson
Рет қаралды 2,1 М.
What is Servlet? in Tamil | Advance Java | DinaTechy
18:25
DinaTechy
Рет қаралды 3,5 М.
#76  What is Exception in Java
5:19
Telusko
Рет қаралды 118 М.
Multithreading in Java Explained in 10 Minutes
10:01
Coding with John
Рет қаралды 1 МЛН
Throw VS Throws | Selenium தமிழ் | Selenium Tamil Tutorial
14:15
LetCode with Koushik
Рет қаралды 19 М.
Budget iPhone is Coming  🤯 New iPhone16e ~ iPhone SE4
5:48
Tamil Tech - MrTT
Рет қаралды 234 М.
#79  Exception Hierarchy in Java
4:17
Telusko
Рет қаралды 90 М.
10 Signs Your Software Project Is Heading For FAILURE
17:59
Continuous Delivery
Рет қаралды 45 М.