Use the thread packaging class for multi-thread operations

Source: Internet
Author: User

Java uses interfaces to implement method callback. In. net, we can easily implement method callback through proxy.

Class class1
{

[Stathread]
Static void main (string [] ARGs)
{
Class1 c = new class1 ();
Threadwrapper Tw = new threadwrapper (New callback (C. printresult), 100 );
// Start the thread
Tw. Start ();
Console. Readline ();
}

// Print the result for callback
Public void printresult (INT result)
{
Console. writeline ("Result:" + result. tostring ());
}
}

// Callback proxy
Public Delegate void callback (int n );

Class threadwrapper
{
Public readonly thread mthread;

Private callback;

Private int N;

// Parameter 1: The callback proxy
// Parameter 2: value to be calculated
Public threadwrapper (callback, int Arg)
{
This. Callback = callback;
Threadstart mythreaddelegate = new threadstart (this. Run );
This. mthread = new thread (mythreaddelegate );
This. n = ARG;
}

// External interface of the thread
Public void start ()
{
This. mthread. Start ();
}

// Method to be called in the thread
Public void run ()
{
Int result = This. caculate (this. N );
Callback (result );
}

Private int caculate (int n)
{
Return N * 100;
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.