1.进入thinkphp项目的public 目录运行以下命令即可 root@jiang:/var/www/tp5# php -S localhost:8080 router.php PHP 7.2.2 Development Server started at Tue Jul 16 14:35:39 2019 Listening on http://localhost:8080 Document root is /var/www/tp5 Press Ctrl-C to quit. 也可以直接制定
一般有一个默认名字 但是具体运行到哪一个线程,需要猜 为了节约时间,提高效率 可以给线程写个中文名(因为默认就是英文,写中文,一眼就能挑出来) 以RTC定时器为例子 final TimerRtc timerRtc = new TimerRtc(1000, new ActionListener() { public void actionPerformed(ActionEvent e) { new Thread("rtc实时时钟") { @Override public void run
When starting gdb with application message “Debugging Helper Missing” is displayed [Solved] http://qt-project.org/forums/viewthread/23332 文章大意就是QtCreator现在不用Qt调试助手了改用python,而mingw自带的gdb不支持python,所以需要支持python的gdb Building GDB http://qt-project.org/wik
在以mfc建立的工程中,需要建立一个链表来保存一些数据.但是在创建结构体,以及对其赋值的过程中,发现对结构体变量不能观察,添加到监视器中的变量也出现变量名不存在的错误. 首先,在文件的开始定义一个结构体 struct drop_link { int num; int x; int y; struct drop_link *next_node; }; 然后在一个按钮函数中编写以下代码: int m=9: struct drop_link drop; drop.num=1; drop.x=2; dr