티스토리 뷰
using System;
using System.Threading;
// The ThreadWithState class contains the information needed for
// a task, the method that executes the task, and a delegate
// to call when the task is complete.
//
public class ThreadWithState
{
// State information used in the task.
private string boilerplate;
private int value;
// Delegate used to execute the callback method when the
// task is complete.
private ExampleCallback callback;
// The constructor obtains the state information and the
// callback delegate.
public ThreadWithState(string text, int number,
ExampleCallback callbackDelegate)
{
boilerplate = text;
value = number;
callback = callbackDelegate;
}
// The thread procedure performs the task, such as
// formatting and printing a document, and then invokes
// the callback delegate with the number of lines printed.
public void ThreadProc()
{
Console.WriteLine(boilerplate, value);
if (callback != null) { callback(1); }
}
}
// Delegate that defines the signature for the callback method.
//
public delegate void ExampleCallback(int lineCount);
// Entry point for the example.
//
public class Example
{
public static void Main()
{
// Supply the state information required by the task.
ThreadWithState tws = new ThreadWithState(
"This report displays the number {0}.",
42,
new ExampleCallback(ResultCallback)
);
Thread t = new Thread(new ThreadStart(tws.ThreadProc));
t.Start();
Console.WriteLine("Main thread does some work, then waits.");
t.Join();
Console.WriteLine(
"Independent task has completed; main thread ends.");
}
// The callback method must match the signature of the
// callback delegate.
//
public static void ResultCallback(int lineCount)
{
Console.WriteLine(
"Independent task printed {0} lines.", lineCount);
}
}
- Total
- Today
- Yesterday
- java.sql
- React
- MainActor
- 특정 문자를 기준으로 자르기
- 진수 변환
- REST API
- 스프링 프레임워크(spring framework)
- docker
- 인텔리제이(intellij)
- java 키워드 정리
- .submit()
- 람다식(lambda expression)
- System.Diagnostics
- 스프링 시큐리티(spring security)-http basic 인증
- nl2br
- await
- java-개발 환경 설정하기
- 표현 언어(expression language)
- 문자 자르기
- jstl(java standard tag library)
- In App Purchase
- 스프링 프레임워크(spring framewordk)
- java web-mvc
- jstl(java standard tag library)-core
- jsp 오픈 소스
- system.io
- 메이븐(maven)
- 제품 등록
- 스프링 시큐리티(spring security)
- error-java
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |