Difference between revisions of "JAVA: start() function di multithreading"

From OnnoWiki
Jump to navigation Jump to search
(Created page with "We have discussed that Java threads are typically created using one of the two methods : (1) Extending thread class. (2) Implementing Runnable In both the approaches, we overr...")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
We have discussed that Java threads are typically created using one of the two methods : (1) Extending thread class. (2) Implementing Runnable
+
Kami telah membahas bahwa thread Java biasanya dibuat menggunakan salah satu dari dua (2) metode:
In both the approaches, we override the run() function, but we start a thread by calling the start() function. So why don’t we directly call the overridden run() function? Why always the start function is called to execute a thread?
+
* Extend thread class.
What happens when a function is called?  
+
* Implement Runnable
When a function is called the following operations take place:  
+
 
+
Dalam kedua pendekatan tersebut, kita override/menimpa fungsi run(), tetapi kita memulai sebuah thread dengan memanggil fungsi start(). Jadi mengapa kita tidak langsung memanggil fungsi run() yang ditimpa? Mengapa selalu fungsi start dipanggil untuk mengeksekusi thread?
 +
 
 +
Apa yang terjadi jika suatu fungsi dipanggil?
 +
Ketika suatu fungsi dipanggil, operasi berikut terjadi:
 +
* Argumen dievaluasi.
 +
* frame stack baru didorong ke stack panggilan.
 +
* Parameter diinisialisasi.
 +
* Tubuh method dieksekusi.
 +
* Nilai dikembalikan dan frame stack saat ini di pop dari call stack.
  
The arguments are evaluated.
+
Tujuan dari start() adalah untuk membuat call stack terpisah untuk thread. Call Stack terpisah dibuat olehnya, dan kemudian run() dipanggil oleh JVM.
A new stack frame is pushed into the call stack.
 
Parameters are initialized.
 
Method body is executed.
 
Value is returned and current stack frame is popped from the call stack.
 
The purpose of start() is to create a separate call stack for the thread. A separate call stack is created by it, and then run() is called by JVM.
 
Let us see what happens if we don’t call start() and rather call run() directly. We have modified the first program discussed here.
 
 
  
 +
Mari kita lihat apa yang terjadi jika kita tidak memanggil start() dan memanggil run() secara langsung. Kami telah memodifikasi program pertama yang dibahas di sini.
  
// Java code to see that all threads are
 
// pushed on same stack if we use run()
 
// instead of start().
 
class ThreadTest extends Thread
 
{
 
  public void run()
 
  {
 
    try
 
    {
 
      // Displaying the thread that is running
 
      System.out.println ("Thread " +
 
                Thread.currentThread().getId() +
 
                " is running");
 
 
    }
 
    catch (Exception e)
 
    {
 
      // Throwing an exception
 
      System.out.println ("Exception is caught");
 
    }
 
  }
 
}
 
 
// Main Class
 
public class Main
 
{
 
  public static void main(String[] args)
 
  {
 
    int n = 8;
 
    for (int i=0; i<n; i++)
 
    {
 
      ThreadTest object = new ThreadTest();
 
 
      // start() is replaced with run() for
 
      // seeing the purpose of start
 
      object.run();
 
    }
 
  }
 
}
 
Output:
 
 
  
Thread 1 is running
 
Thread 1 is running
 
Thread 1 is running
 
Thread 1 is running
 
Thread 1 is running
 
Thread 1 is running
 
Thread 1 is running
 
Thread 1 is running
 
We can see from above output that we get same ids for all threads because we have directly called run(). The program that calls start() prints different ids (see this)
 
  
 +
// Java code to see that all threads are
 +
// pushed on same stack if we use run()
 +
// instead of start().
 +
class ThreadTest extends Thread
 +
{
 +
  public void run()
 +
  {
 +
    try
 +
    {
 +
      // Displaying the thread that is running
 +
      System.out.println ("Thread " +
 +
                Thread.currentThread().getId() +
 +
                " is running");
 +
 
 +
    }
 +
    catch (Exception e)
 +
    {
 +
      // Throwing an exception
 +
      System.out.println ("Exception is caught");
 +
    }
 +
  }
 +
}
 +
 
 +
// Main Class
 +
public class Main
 +
{
 +
  public static void main(String[] args)
 +
  {
 +
    int n = 8;
 +
    for (int i=0; i<n; i++)
 +
    {
 +
      ThreadTest object = new ThreadTest();
 +
 
 +
      // start() is replaced with run() for
 +
      // seeing the purpose of start
 +
      object.run();
 +
    }
 +
  }
 +
}
  
 +
Output:
 +
 +
Thread 1 is running
 +
Thread 1 is running
 +
Thread 1 is running
 +
Thread 1 is running
 +
Thread 1 is running
 +
Thread 1 is running
 +
Thread 1 is running
 +
Thread 1 is running
  
 +
Kita dapat melihat dari output di atas bahwa kita mendapatkan id yang sama untuk semua thread karena kita telah memanggil run() secara langsung. Program yang memanggil start() mencetak id yang berbeda
  
  

Latest revision as of 11:09, 15 May 2022

Kami telah membahas bahwa thread Java biasanya dibuat menggunakan salah satu dari dua (2) metode:

  • Extend thread class.
  • Implement Runnable

Dalam kedua pendekatan tersebut, kita override/menimpa fungsi run(), tetapi kita memulai sebuah thread dengan memanggil fungsi start(). Jadi mengapa kita tidak langsung memanggil fungsi run() yang ditimpa? Mengapa selalu fungsi start dipanggil untuk mengeksekusi thread?

Apa yang terjadi jika suatu fungsi dipanggil? Ketika suatu fungsi dipanggil, operasi berikut terjadi:

  • Argumen dievaluasi.
  • frame stack baru didorong ke stack panggilan.
  • Parameter diinisialisasi.
  • Tubuh method dieksekusi.
  • Nilai dikembalikan dan frame stack saat ini di pop dari call stack.

Tujuan dari start() adalah untuk membuat call stack terpisah untuk thread. Call Stack terpisah dibuat olehnya, dan kemudian run() dipanggil oleh JVM.

Mari kita lihat apa yang terjadi jika kita tidak memanggil start() dan memanggil run() secara langsung. Kami telah memodifikasi program pertama yang dibahas di sini.


// Java code to see that all threads are
// pushed on same stack if we use run()
// instead of start().
class ThreadTest extends Thread
{
  public void run()
  {
    try
    {
      // Displaying the thread that is running
      System.out.println ("Thread " +
                Thread.currentThread().getId() +
                " is running");
 
    }
    catch (Exception e)
    {
      // Throwing an exception
      System.out.println ("Exception is caught");
    }
  }
}
 
// Main Class
public class Main
{
  public static void main(String[] args)
  {
    int n = 8;
    for (int i=0; i<n; i++)
    {
      ThreadTest object = new ThreadTest();
 
      // start() is replaced with run() for
      // seeing the purpose of start
      object.run();
    }
  }
}

Output:

Thread 1 is running
Thread 1 is running
Thread 1 is running
Thread 1 is running
Thread 1 is running
Thread 1 is running
Thread 1 is running
Thread 1 is running

Kita dapat melihat dari output di atas bahwa kita mendapatkan id yang sama untuk semua thread karena kita telah memanggil run() secara langsung. Program yang memanggil start() mencetak id yang berbeda


Referensi