线程是Java中多线程的支柱。多线程是允许同时执行程序的两个或多个部分以最大限度地利用 CPU 的功能。这种程序的每一部分都称为一个线程。所以线程是进程中的轻量级进程。
一个线程在Java可以有多个状态,并且在执行的任何时候处于以下任一状态
- 新的
- 可运行
- 跑步
- 等待/阻塞
- 终止/死亡
线程的可运行状态是线程准备好运行的状态称为处于可运行状态或换句话说等待其他线程(当前正在执行)完成其执行并执行自身。运行在当前的处理器执行的线程的状态处于运行小号大老地说道。线程调度程序有责任为线程提供运行时间。
多线程程序为每个单独的线程分配固定的时间量。每个线程运行一小段时间,然后暂停并将 CPU 交给另一个线程,以便其他线程有机会运行。
在这里,我们将讨论 Runnable 和 Running 状态之间的区别,因为大多数学习程序员对这两种状态感到困惑。以下是为了更好的清晰度和内部工作而提供的程序。
例子:
Java
// java Program to illustrate Difference between
// Running and Runnable states of Thread
// Importing input output classes
import java.io.*;
// Class 1
// Helper Class (extending main Thead class)
// Defining Thread1
class Thread1 extends Thread {
// run() method for Thread1
public void run()
{
// Display message only when thread1 starts
System.out.println("Thread 1 started ");
// Iterations
for (int i = 101; i < 200; i++)
System.out.print(i + " ");
// Display message only when thread1 ended
System.out.println("\nThread 1 completed");
}
}
// Class 2
// Helper Class (extending main Thread class)
// Defining Thread2
class Thread2 extends Thread {
// run() method for Thread 2
public void run()
{
// Display message only when thread 2 starts
System.out.println("Thread 2 started ");
// Iterations
for (int i = 201; i < 300; i++)
System.out.print(i + " ");
// Display message only when thread 2 ended
System.out.println("\nThread 2 completed");
}
}
// Class 3
// Helper Class (extending main Thread class)
// Defining Thread3
class Thread3 extends Thread {
// run() method for Thread 3
public void run()
{
// Display message only when thread 3 starts
System.out.println("Thread 3 started ");
// Iterations
for (int i = 301; i < 400; i++)
System.out.print(i + " ");
// Display message only when thread 3 starts
System.out.println("\nThread 3 completed");
}
}
// Class 4
// Main Class
class GFG {
// Main driver method
public static void main(String[] args)
{
// Try block to check for exceptions
try {
// Creating object of each of the threads
// defined
Thread1 thread1 = new Thread1();
Thread2 thread2 = new Thread2();
Thread3 thread3 = new Thread3();
// Instructing thread to start the execution
// using the start() method
thread1.start();
thread2.start();
thread3.start();
}
// Catch block to handle the exceptions
catch (Exception e) {
// Print the line number where exception
// occured
e.printStackTrace();
}
}
}
输出:
Thread 1 started
Thread 2 started
Thread 3 started
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
Thread 3 completed
101 102 103 104 201 105 202 106 107 203 108 204 109 205 110 206 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
Thread 2 completed
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
Thread 1 completed
注意:每次执行时,上述代码的输出不一定都相同,因为这取决于 CPU(线程调度程序)为处理器分配了哪个线程以及分配了多长时间。
输出说明:
为了在上述程序的上下文中理解这一点,请考虑何时使用301语句 正在打印这意味着线程3处于运行状态,但是线程1和线程2的状态是什么,答案是, 同时,当thread3在处理器中被执行时,thread2和thread1正在等待轮到它们被处理或执行,即它们当前处于Runnable状态(或准备运行)。