You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
271 B
19 lines
271 B
package org.example.strategy;
|
|
|
|
/**
|
|
* Eclipse
|
|
*
|
|
* @author xiaomage
|
|
* @date 2022/12/18
|
|
*/
|
|
public class Eclipse implements Program {
|
|
|
|
|
|
/**
|
|
* 编码
|
|
*/
|
|
@Override
|
|
public void coding() {
|
|
System.out.println("用Eclipse 进行编码");
|
|
}
|
|
}
|
|
|