1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.skyline.electricity.controller;
|
| public class MyThread implements Runnable
| {
| private int i;
| private int j;
| private String method;
|
| public MyThread(final int i, final int j, final String method) {
| this.i = i;
| this.j = j;
| this.method = method;
| }
|
| @Override
| public void run() {
| }
| }
|
|