タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

javaとc#に関するtheatricalのブックマーク (1)

  • Multithreading: C# vs. Java

    In my pervious post I described basic multithreading constructs in C#. Now, I would like to compare them to conforming constructs in Java. It might be useful for those of you, who has already created some multithreaded applications in Java, and would like to learn how to do the same in C#. Creating a new thread C#: using System; using System.Threading;</p> class ThreadTest { static void Main() { T

    theatrical
    theatrical 2014/03/30
    C#もJavaももっと新しいconcurrentな処理の方法があるのにthreadを自分で生成するなんていう、古臭い方法で比較しても意味ないだろ感
  • 1