尊敬小懒虫

文章
5
资源
0
加入时间
3年1月13天

信号SIGINT

SIGINT信号:程序终止(interrupt)信号, 在用户键入INTR字符(通常是Ctrl-C)时发出,用于通知前台进程组终止进程。例子1:#include <stdio.h>#include <signal.h>#include <stdlib.h> void sig_int(int signo){ printf("sig_int\n"); //exit(0);} int m

枚举enum在switch中的运用

 enum Size{ SMALL,FLOAT;}public class Test { public static strictfp void main(String[] args) throws Exception { new Test().run(Size.FLOAT); } public void run(Size size) { sw...

CSS动画:transition画一个爱心

transition 属性是一个简写属性,用于设置四个过渡属性:transition-property transition-duration transition-timing-function transition-delay,