Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions 1 .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@
<classpathentry kind="src" path="Questions_to_ask"/>
<classpathentry kind="src" path="Chapter8"/>
<classpathentry kind="src" path="Oracle_Java_Tutorials"/>
<classpathentry kind="src" path="Chapter11"/>
<classpathentry kind="output" path="bin"/>
</classpath>
26 changes: 26 additions & 0 deletions 26 Chapter11/Multi_threaded_programming.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// Create a thread by implementing Runnable.
public class Multi_threaded_programming {

public static void main(String[] args) {
// TODO Auto-generated method stub

}

}

class MyThreaded implements Runnable {

String thread_nameString;

public MyThreaded(String name) {
// TODO Auto-generated constructor stub
thread_nameString = name;
}

@Override
public void run() {
// TODO Auto-generated method stub

}

}
10 changes: 10 additions & 0 deletions 10 Chapter8/Interface/ICharQ.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package Interface;

public class ICharQ {

public static void main(String[] args) {
// TODO Auto-generated method stub

}

}
10 changes: 10 additions & 0 deletions 10 Chapter8/Interface/IQDemo.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package Interface;

public class IQDemo {

public static void main(String[] args) {
// TODO Auto-generated method stub

}

}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.