📄 killprocessus.java
字号:
package fr.umlv.projet.procfs;/** * This clas is used to kill the processus. * @author MA Xiao Jun & HUANG Wei * */public class KillProcessus { public static native String kill(int pid); static{ System.loadLibrary("kill"); } /** * kill the processus selected. * @param pid the number of processuse that we want to kill. * @return the status of the action */ public static String killAProc(int pid){ return kill(pid); } // public static void main(String[] args) {// killAProc(18089);// }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -