ASP. NET (a series of learning languages)-multithreading programming in. NET-passing Parameters Using thread. Start () (4)

Source: Internet
Author: User

  Reading directory

I. Preface

Ii. Instances

Iii. Running Effect

  I. Preface

 As mentioned in the previous section, the parameter for creating a thread is a function. When a new thread starts, it will execute this function without any parameters, if there is no return value, how can we call a function with parameters? The previous section uses constructors to pass parameters. This section uses other methods to implement

  Ii. Instances

Using System;
Using System. Collections. Generic;
Using System. Linq;
Using System. Text;
Using System. Threading;

Namespace _ 2_ThreadArgs
{
Class Program
{
Static void Main (string [] args)
{
User user = new User ();
Thread thread = new Thread (ThreadMethod );
Thread. Start (user );

}

Static private void ThreadMethod (object obj)
{
User user = (User) obj;
User. GetName ();
}
}

/// <Summary>
/// User class
/// </Summary>
Class User
{
Public void GetName ()
{
Console. WriteLine ("My name is: getting sleepy since childhood ");
}
}
}

 Iii. Running Effect

  

 

 

Related Article

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.