December 8th, 2011 01:58 PM
May you give me a simple code for DLL injection and explain more about it?
December 4th, 2011 11:18 AM
As far as I know, driver is used to be an interface between OS and hardware.
Both Duqu and Stuxnet use a kernel driver to decrypt and load certain encrypted files on the infected computer. The...
August 21st, 2010 02:47 PM
Please correct me If I am wrong.
Say there is file X and process A want to write on file X.
A stream is a sequence of bytes. In the NTFS file system, streams contain the data that is written to...
March 25th, 2010 12:01 AM
I use Netbeans,I press CTRL-BREAK while I run the program in this link about deadlock , but I didn't see anything.I want to see thread dump.
...
January 8th, 2010 09:43 PM
1-What is thread mapping?
2-What is native thread?What its difference with green thread?
January 8th, 2010 09:41 PM
public class Main {
public static void main(String[] args){
Thread a=new SimpleThread("Jamaica");
a.start();
try{
a.join();
...
January 8th, 2010 06:00 AM
http://www.cs.umd.edu/class/fall2007/cmsc132/lectures/26-Threads-6p.pdf
Page 4
Scheduler is part of OS or Java Virtual Machine (JVM)
May you explain more about mechanism of Scheduler?
January 7th, 2010 12:39 PM
Code each line block with one mind. Let the OS thread scheduler do the interleaving.
1-Is it the Os or is it the JVM choose which thread to run?
2- What is the relationship between JVM and ...
January 7th, 2010 07:32 AM
http://marcja.wordpress.com/2007/04/06/four-reasons-to-use-multithreading/
What do you understand from this?
January 7th, 2010 07:30 AM
The key in using threads to simplify your code is to try to keep your functions and methods on one train of thought. Rather than turn your code into an arthritic mess trying to interleave multiple...
January 6th, 2010 11:12 AM
public class Main {
public static void main(String[] args){
new SimpleThread("Fiji").start();
Thread a=new SimpleThread("Jamaica");
a.start();
...
January 2nd, 2010 08:00 AM
notifyAll();
System.out.println(" START");
for ( i=100;i<=400;i+=100){
System.out.println("distance="+ i );
}
This is the way...
January 1st, 2010 03:45 PM
I wanted to write a program about notifyAll:
public class Main {
/** Creates a new instance of Main */
January 1st, 2010 02:18 PM
Thanks!
But may you answer the first question?
January 1st, 2010 06:41 AM
I wrote a code about synchronized in JAVA , according to the example of this book
public class deduct {
August 2nd, 2009 02:05 PM
volatile VS synchronization
What is advantage of volatile of memory and cache?
January 11th, 2009 02:31 PM
http://www.developer.com/design/article.php/3677501
If I use the flyweight pattern so that I only store unique Time instances, I can reduce the maximum number of typical time objects to 96 (24...
January 5th, 2009 01:30 PM
I cann't understand the code in that article,I need explain by code!
December 24th, 2008 02:22 PM
Hi!
Please explain about Flyweight Pattern
From this site:http://www.allapplabs.com/java_design_patterns/flyweight_pattern.htm
The typical example you can see on this in every book will be...
December 10th, 2008 06:02 AM
http://www.allapplabs.com/java_design_patterns/facade_pattern.htm
package structural.facade;
public class FinishedGoodsStore implements Store {
public Goods getGoods() {...