2015. 1. 28. 21:00
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
package Runtime;
public class availableProcessors {
public static void main(String[] args){
Runtime runtime=Runtime.getRuntime();
int nrOfProcessors=runtime.availableProcessors();
System.out.println("Number of processors available to the Java Virtual Machine: "+ nrOfProcessors);
}
}
'Java' 카테고리의 다른 글
Runtime : exec(String[] command) (0) | 2015.01.28 |
---|---|
Runtime : addShutdownHook(Thread hook) (0) | 2015.01.28 |
URL : openStream() (0) | 2015.01.25 |
URL : openConnection() (0) | 2015.01.25 |
URL : getAuthority() (0) | 2015.01.25 |