2.Ctrl + Alt:释放鼠标
3.右上角:切换输入法(搜狗/五笔)
4.终端工具
1.打开方法
1.点击图标
2.搜索:终端
2.退出终端
1.exit
2.Ctrl + d
两种方法,先检查下php是否安装 :1php -i
1,直接写源码:
1php -r 'echo "hello world"'
2,运行php文件
1php test.php
test.php内容:
12<?phpecho 'hello world'
我来自bt1024.cn
比如:
#include <stdio.h>#include <stdlib.h>
#include <linux/input.h>
#include <fcntl.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int main(int argc,char **argv)
{
int fd, retval
char buf[6]
fd_set readfds
struct timeval tv
//fd = open("/dev/input/mice", O_RDONLY)
if(( fd = open("/dev/input/mice", O_RDONLY))<0)
{
printf("Failed to open \"/dev/input/mice\".\n")
exit(1)
}
else
{
printf("open \"/dev/input/mice\" successfuly.\n")
}
while(1)
{
tv.tv_sec = 5
tv.tv_usec = 0
FD_ZERO(&readfds)
FD_SET(fd, &readfds)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)