⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 killprocessus.java

📁 这是一个在linux环境下
💻 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 + -