
面试
qxsorz
精通MT4/MT5多账户同步跟仓的资深解决方案专家,擅长稳定低延迟的EA编程与风控系统搭建。
展开
-
数据结构面试题
http://blog.youkuaiyun.com/jokes000/article/details/7070520转载 2017-09-17 09:27:55 · 394 阅读 · 0 评论 -
Java虚拟机面试题
虚拟机内存是不是开的越大越好? 考虑GC效率的话,开小了会使GC发生的很频繁,开大了虽然会减少GC的次数,但是会增加每次GC的时间,当新生代使用串行回收时,GC时间过长会造成程序所有线程暂停时间过长。Sun公司给的例子是(4G内存,32个线程并发能力)-Xmx3800m -Xms3800m -Xmn2G -Xss128k原创 2017-11-09 11:40:18 · 254 阅读 · 0 评论 -
JAVA面试题
基础部分 1 switch可以和那些数据类型配合? Unlike if-then and if-then-else statements, the switch statement can have a number of possible execution paths. A switch works with the byte, short, char, and int primitiv原创 2017-09-14 20:33:23 · 1257 阅读 · 1 评论 -
JavaScript面试题
http://blog.youkuaiyun.com/qq_21856521/article/details/53080620原创 2017-10-26 14:26:05 · 272 阅读 · 0 评论 -
网络面试题
TCP和UDP端口号重叠么? 看看IP的首部格式:是没有端口的,TCP与UDP的报文中才有端口一说。所以端口分为TCP的端口和UDP的端口,TCP的80端口号分配给一个程序,同UDP的端口可以分配给另一个程序。原创 2017-11-13 14:28:33 · 307 阅读 · 0 评论 -
Servlet面试题
Servlet的声明周期 Q : forward和redirect的区别? 该两个方法对应的代码实现如下: //Forwards a request from a servlet to another resource (servlet, JSP file, or HTML file) //on the server. This method allows one se原创 2017-12-07 17:11:40 · 787 阅读 · 0 评论