|
??? ?????(multithreading) ??? ???? ??? ?? ?? ????.
2007-08-02 16:53:00 ??? ?????(multithreading) ??? ?????. ^^ ??? ???? ???? ???? ???? ???? ???? ????? ??? ?? ????? ??? ???? ?????(triangle) ?????.?? ?? ??? ?? ??? ?? ?? ???? ?? ??? ???? ?? ??? ??????. ?? ???? ... ?? ??? ??? ????. ?? ?? ???? ?? ?????? ?? ??? ??? ... ?? ?? ?? ??? ?????. ?? ?? ???? ?? ????? ...??? ?? ???? ? ????? ??
Multithreaded programming in D
2007-06-08 11:39:00 While in C++ there was no build-in threading support, D comes with a JAVA-like class “Thread”. So while in C/C++ you had to mingle around with threading libs like pthread or solaris-threads, in D you can leave that problem to phobos. A simple example shows all the simplicity: import std.c.time; import std.stdio; import std.thread; int runThread(void *ptr) { printf("Thread %d ...
Java Program to demonstrate multithreading
2007-06-04 12:38:00 class mt implements Runnable{Thread t;mt() { t = new Thread(this, "Demo thread"); t.start(); }public void run() { try { for(int i=1;i { System.out.println(i); t.sleep(1000); } } catch(InterruptedException e) { System.out.println("Thread is interrupted"); } }};class th{ public static void main(String[] args) { mt t = new mt(); try { for (int i=2;i { System.out.println(i); Thread.sleep(500); } } catch(InterruptedException e) { } }}
Having challenges with JUnit in multithreaded applications?
2007-04-18 23:03:00 Robert Keith of DigitalTester.com has written a great entry on some techniques for testing multithreaded applications with JUnit using Java’s java.util.concurrent package. Check out his entry entitled “Homegrown Multithreaded JUnit Tests” for an informative read.
By: Test Early
?CORE JAVA? JAVA Multithreading
2007-02-21 09:08:03 Qualification :Highest - MCA/PGDCA, ME/M.Tech (Computers )2nd Highest - BE/B.Tech (Agriculture, Computers)Experience : 4 -8Level : Middle - Manager, Assistant ManagerLocation : Bangalore, GurgaonJOB DESCRIPTION :Key Skills :* Knowledge of multiple technologies & proven expertise in at 2-3 technologies including* but not limited to J2EE, .NET, HTML, DHTML, XML, SOAP, JavaScript, Java, Visual Basic, Visual Basic.NET, PL/SQL, C/C++, C#, Perl, TCL, RDBMS, CORBA, COM/DCOM.CONTACT INFORMATION :Email Id : ayesha@iquest-consultants.comPh-one No. : 02026851932/42 Ext 28
Missing The Boat On Multithreading?
2006-12-12 10:31:02 From TechWeb: It's been 18 months since Intel introduced the first dual-core desktop processor, but only a handful of ISVs have... |



