Search:

Type: Posts; User: heronfisher

Search: Search took 0.18 seconds.

  1. Replies
    4
    Views
    3,149

    Re: Future of Java

    Nothing will happen to Java. Oracle's entire e-business suite (the primary money maker for Oracle, not their database) is built on java. Oracle has been using java for more than 5 years and is very...
  2. Re: Create a java small class for a bank account!!?

    If I had to make a Bank Account class I would prefer the following interface:


    Class Bank Account{
    public Bank Account()
    public void withdraw(double amount)
    public void deposit(double...
  3. Replies
    9
    Views
    8,313

    Re: Importance of interfaces

    Using interface you can declare method in another interface without declaring new interface. But make sure that you have implement write interface otherwise it will give you error message. Using...
  4. Re: how to delete record from checking checkbox value.

    If your page has a control something like this:

    <input type="checkbox" name="idValue" value="${myObj.id}">


    Then in the servlet that you go to when submitting the...
Results 1 to 4 of 4