com.scudata.thread.IntSortJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.thread;
/**
* ????ִ???????????
* @author RunQian
*
*/
class IntSortJob extends Job {
private int []src;
private int []dest;
private int fromIndex; // ??ʼλ?ã?????
private int toIndex; // ????λ?ã???????
private int off; // ?????????ƫ????
private int threadCount; // ?????߳???
public IntSortJob(int []src, int []dest, int fromIndex, int toIndex, int off, int threadCount) {
this.src = src;
this.dest = dest;
this.fromIndex = fromIndex;
this.toIndex = toIndex;
this.off = off;
this.threadCount = threadCount;
}
public void run() {
MultithreadUtil.mergeSort(src, dest, fromIndex, toIndex, off, threadCount);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy