Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
codershiyar committed May 11, 2020
1 parent 9d413c2 commit 5c12894
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Binary file added Lessson 50 - الدرس/Abstract_Java.bmp
Binary file not shown.
12 changes: 12 additions & 0 deletions Lessson 50 - الدرس/Java/App.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package Java;

public class App extends App2 {

public static void main(String[] args) {

App.show_message();
// App2 app2 = new App2();
}

}

8 changes: 8 additions & 0 deletions Lessson 50 - الدرس/Java/App2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package Java;

public abstract class App2 {
public static void show_message(){

System.out.println("رسالة من ميتود داخل كلاس ابستركت");
}
}

0 comments on commit 5c12894

Please sign in to comment.