<<head first java>> https://www.tutorialspoint.com/jsp/jsp_architecture.htm JSP Processing: The following steps explain how the web server creates the web page using JSP: As with a normal page, your browser sends an HTTP request to the web ser…
起源: 今天在了解副作用side-effect的过程中,看到了下面的网页,把我带到了由printf引起的一系列问题,纠结了一整天,勉强弄懂. 第一个代码没什么好解释的.而第二个printf("return of swap is %d\tx=%d,y=%d\n",swap(&x,&y),x,y)居然是"return of swap is 1 x=1,y=0",输出的x和y的值并没有改变! 原因在于C语言函数参数的处理是从右到左的压栈顺序(这个我在看第一…