Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. paulb567

    Struggling with the concept of Interface and Abstract

    Sorry, sedj's explanation is much better than mine.
  2. paulb567

    Struggling with the concept of Interface and Abstract

    Think about the following example. You create an interface called Shape.. public interface Shape { public int getArea(); } You could then create two different classes implementing Shape called Square and Circle class Square implements Shape { private int width; private int...
  3. paulb567

    Struggling with the concept of Interface and Abstract

    http://java.sun.com/docs/books/tutorial/java/index.html Take a look at Classes and Inheritance Interfaces and Packages Should get you started.
  4. paulb567

    delete causing an error and app crashing

    Hello, I'm fairly new to visual c++ and am currently working my way thourgh a few examples of windows programming. Anyway, the curent example I'm putting together is a very simple drawing application (the kind of thing you find in all the learn visual c++ books). The problem I'm facing is...

Part and Inventory Search

Back
Top