diff --git a/多线程编程/MultiThread/pom.xml b/多线程编程/MultiThread/pom.xml new file mode 100644 index 0000000..19e5352 --- /dev/null +++ b/多线程编程/MultiThread/pom.xml @@ -0,0 +1,25 @@ + + 4.0.0 + + com.cpic.xim + MultiThread + 1.0-SNAPSHOT + jar + + MultiThread + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/多线程编程/MultiThread/src/main/java/com/cpic/xim/App.java b/多线程编程/MultiThread/src/main/java/com/cpic/xim/App.java new file mode 100644 index 0000000..fd36745 --- /dev/null +++ b/多线程编程/MultiThread/src/main/java/com/cpic/xim/App.java @@ -0,0 +1,18 @@ +/* + * @Author: Kane + * @Date: 2023-11-29 23:56:18 + * @LastEditors: Kane + * @FilePath: /MultiThread/src/main/java/com/cpic/xim/App.java + * @Description: + * + * Copyright (c) ${2023} by Kane, All Rights Reserved. + */ +package com.cpic.xim; + +public class App +{ + public static void main( String[] args ) + { + System.out.println( Thread.currentThread().getName() ); + } +} diff --git a/多线程编程/MultiThread/src/main/java/com/cpic/xim/utils/MyThread.java b/多线程编程/MultiThread/src/main/java/com/cpic/xim/utils/MyThread.java new file mode 100644 index 0000000..527d4ba --- /dev/null +++ b/多线程编程/MultiThread/src/main/java/com/cpic/xim/utils/MyThread.java @@ -0,0 +1,19 @@ +/* + * @Author: Kane + * @Date: 2023-11-30 00:03:20 + * @LastEditors: Kane + * @FilePath: /MultiThread/src/main/java/com/cpic/xim/utils/MyThread.java + * @Description: + * + * Copyright (c) ${2023} by Kane, All Rights Reserved. + */ +package com.cpic.xim.utils; + +public class MyThread extends Thread +{ + @Override + public void run() + { + super.run(); + } +} \ No newline at end of file diff --git a/多线程编程/MultiThread/src/test/java/com/cpic/xim/AppTest.java b/多线程编程/MultiThread/src/test/java/com/cpic/xim/AppTest.java new file mode 100644 index 0000000..b949c19 --- /dev/null +++ b/多线程编程/MultiThread/src/test/java/com/cpic/xim/AppTest.java @@ -0,0 +1,38 @@ +package com.cpic.xim; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +}