Skip to content
Snippets Groups Projects
Commit ca525aa5 authored by Sven Steddin's avatar Sven Steddin
Browse files

Erweiterung Beispielprojekte

parent cc13b86c
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="output" path="bin"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ThreadPriority</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
/** ThreadPriority.java
* Programm zur Demonstration der in Java verfgbaren Priorittsstufen
*
* @author stedS
* @version 1.0 (2017-01-19)
*/
package inf3;
public class ThreadPriority {
public static void main(String[] args) {
System.out.println("Minimale Thread-Prioritt: " + Thread.MIN_PRIORITY);
System.out.println("Maximale Thread-Prioritt: " + Thread.MAX_PRIORITY);
System.out.println("Standard Thread-Prioritt: " + Thread.NORM_PRIORITY);
System.out.println("Prioritt des main Threads: " + Thread.currentThread().getPriority());
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment