Search:

Type: Posts; User: cs13

Search: Search took 0.10 seconds.

  1. Re: Assigning a Value to a Class extending a Superclass

    package objects;
    public class Objects {

    String carrier="Zain JO";
    String color="Black";
    int battery=1;

    public void ObjectsCon(int b){
    battery=b;
    }
  2. Re: How do I implement a login system in java using arrays

    package loginPackage;

    import java.util.*;
    import javax.swing.*;

    public class userInterface extends javax.swing.JFrame {

    String username="";
    String password="";
    String...
  3. Replies
    8
    Views
    2,072

    Re: nested loop structure

    package test;

    import java.util.Scanner;

    public class Test {

    public static void main(String[] args) {

    Scanner input = new Scanner( System.in );
  4. checked or unchecked exception when Throwable is extended

    Hi
    Suppose a user defined exception class, say UserExcp is created by extending the Throwable class.
    What type of exception it will be checked or unchecked and why?
Results 1 to 4 of 4