斯文项链

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

回顾 break与continue

在编程语言中,break 与 continue 都有终止循环的作用,那么两个有什么差别breakpublic class module { public static void main(String[] args) { for (int i = 0; i <10; i++) { if (i == 5 || i ==7) { ...

第一个Mybatis程序

思路:搭建环境–>导入Mybatis–>编写代码–>测试!MapperRegistry是什么?核心配置文件中注册 mappers。1、第一个Mybatis程序。编写mybatis工具类。Maven导出资源问题。2.2、创建一个模块。

队列(数组描述)

队列一个先进先出的线性表 (环形队列 逆时针)#include<iostream>#include"queue.h"using namespace std;template<class T>class arrayQueue :public queue<T>{public: arrayQueue(int initialCapacity = 10); ~arrayQueue(

Nginx 与 PHP-FPM 运行原理

一、什么是 FastCGI FastCGI是一个可伸缩地、高速地在HTTP server和动态脚本语言间通信的接口。多数流行的HTTP server都支持FastCGI,包括Apache、Nginx和lighttpd等,同时,FastCGI也被许多脚本语言所支持,其中就有PHP。FastCGI是从CGI发展改进而来的。传统CGI接口方式的主要缺点是性能很差,因为每次HTTP服务...