C#
 Computer >> コンピューター >  >> プログラミング >> C#

現在のスレッドのステータスをチェックするC#プログラム


C#で現在のスレッドのステータスを確認するには、 IsAliveを使用します プロパティ。

まず、 currentThreadを使用します スレッドに関する情報を表示するプロパティ-

Thread thread = Thread.CurrentThread;

次に、 thread.IsAliveを使用します スレッドのステータスをチェックするプロパティ-

thread.IsAlive
C#で現在のスレッドのステータスを確認するための完全なコードを見てみましょう。

using System;
using System.Threading;
namespace Demo {
   class MyClass {
      static void Main(string[] args) {
         Thread thread = Thread.CurrentThread;
         thread.Name = "My New Thread";
         Console.WriteLine("Thread Status = {0}", thread.IsAlive);
         Console.ReadKey();
      }
   }
}
出力
Thread Status = True

  1. 数が素数であるかどうかをチェックするC#プログラム

    数値が素数であるかどうかを計算するために、forループを使用しました。その中で、すべての反復で、ifステートメントを使用して、数値自体の間の剰余が0に等しいことを確認します。 for (int i = 1; i <= n; i++) {    if (n % i == 0) {       a++;    } } カウンターaも追加されます。これは、数が素数の場合、つまり1と数自体の場合に2回だけ増加します。したがって、aの値が2の場合、その数は素数であることを意味します。 例 数が素数であるかどうかを確認するための

  2. 回文をチェックするJavaプログラム

    回文数は、逆にしたときに同じままの数です。たとえば、121、313、525などです。 例 回文をチェックする例を見てみましょう- public class Palindrome {    public static void main(String[] args) {       int a = 525, revVal = 0, remainder, val;       val = a;       System.out.println("Number to be che