Jump to content

Java abstract class - simple view of it.

- - - - -

  • Please log in to reply
No replies to this topic

#1
Turk4n

Turk4n

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 3,847 posts
Simple example.
public abstract class TestHelloAbstract {

	

	public void Hello() {

		System.out.println(HelloCodeCall);

	}

	public abstract String CodeCall();

	String HelloCodeCall = "Hello CodeCall";

}


Posted Image




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users