摘要:在开发不同项目时,可能会用到不同的jdk,需要我们在不同的jdk之间切换,怎么样在同一电脑上装不同的jdk,以此总结 1、正常安装jdk1.7,1.8 显示安装了jdk1.7,再安装jdk1.8,安装路径如图 2、设置环境变量 a、 这里使用三个变量:JAVA_HOME,JAVA7_HOME, ...
                            
                            
                                分类:
Windows开发   时间:
2019-02-24 11:32:03   
                                收藏:
0  评论:
0  赞:
0  阅读:
271
                             
                    
                        
                            
                            
                                              Python : 3.7.0           OS : Ubuntu 18.04.1 LTS   ...
                            
                            
                                分类:
编程语言   时间:
2019-02-24 11:31:41   
                                收藏:
0  评论:
0  赞:
0  阅读:
188
                             
                    
                        
                            
                            
                                "Myacm Triangles" Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 1277 Accepted: 715 Description There has been considerable archeological  ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:31:25   
                                收藏:
0  评论:
0  赞:
0  阅读:
152
                             
                    
                        
                            
                            
                                You have a quadrilateral shaped land whose opposite fences are of equal length. You have four neighbors whose lands are exactly adjacent to your four  ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:31:10   
                                收藏:
0  评论:
0  赞:
0  阅读:
159
                             
                    
                        
                            
                            
                                              Python : 3.7.0           OS : Ubuntu 18.04.1 LTS   ...
                            
                            
                                分类:
编程语言   时间:
2019-02-24 11:30:53   
                                收藏:
0  评论:
0  赞:
0  阅读:
277
                             
                    
                        
                            
                            
                                              Python : 3.7.0           OS : Ubuntu 18.04.1 LTS   ...
                            
                            
                                分类:
编程语言   时间:
2019-02-24 11:30:38   
                                收藏:
0  评论:
0  赞:
0  阅读:
219
                             
                    
                        
                            
                            
                                "Generalized Matrioshkas" Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 2036 Accepted: 600 Description Vladimir worked for years making m ...
                            
                            
                                分类:
移动平台   时间:
2019-02-24 11:30:19   
                                收藏:
0  评论:
0  赞:
0  阅读:
252
                             
                    
                        
                            
                            
                                    问题 使用sudo pip3 install tensorflow安装完CPU版tensorflow后,运行简单的测试程序,出现如下警告: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructi ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:30:03   
                                收藏:
0  评论:
0  赞:
0  阅读:
495
                             
                    
                        
                            
                            
                                "Expressions" Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 3796 Accepted: 1098 Description Arithmetic expressions are usually written wi ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:29:32   
                                收藏:
0  评论:
0  赞:
0  阅读:
253
                             
                    
                        
                            
                            
                                    原理: 先用结果类监听器(用表格察看结果、聚合报告)将测试结果以csv文件保存到本地。 然后再用SMTP Sampler取样器把本地的测试结果文件发送到指定邮箱 具体步骤如下: 1.下载javamail jar包 https://maven.java.net/content/repositories ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:28:43   
                                收藏:
0  评论:
0  赞:
0  阅读:
476
                             
                    
                        
                            
                            
                                    页面静态化 1、在开发项目时,有时会遇到一些页面数据量特别大,但是又不经常改变的情况,如商城首页等,这时候就需要进行页面静态化,减轻服务器和数据库的压力。 这里我们先用原生的PHP写一个简单的demo,用来理解页面静态化的原理,然后再尝试用框架说明一下(thinkphp)。 主要会使用到PHP的ob ...
                            
                            
                                分类:
Web开发   时间:
2019-02-24 11:28:05   
                                收藏:
0  评论:
0  赞:
0  阅读:
292
                             
                    
                        
                            
                            
                                    纠错帖:Zuul & Spring Cloud Gateway & Linkerd性能对比 Spring Cloud Spring Cloud Spring Cloud Gateway Zuul 性能 2018/02/08 1281 纠错帖:Zuul & Spring Cloud Gateway & ...
                            
                            
                                分类:
编程语言   时间:
2019-02-24 11:27:50   
                                收藏:
0  评论:
0  赞:
0  阅读:
186
                             
                    
                        
                            
                            
                                    给定两个长度为 $n$ 的数列 $a$ 和 $b$,有 $m$ 个操作,操作分为三类: $1$ $l$ $r$ $w$ :将数列 $a$ 中区间 $[l,r]$ 内所有数加上 $w$ ; $2$ $x$ $y$ :交换 $b_x$ 和 $b_y$ ; $3$ $l$ $r$ : 求 $\displa ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:27:31   
                                收藏:
0  评论:
0  赞:
0  阅读:
162
                             
                    
                        
                            
                            
                                    1 ''' 2 如何在列表,字典,集合中根据条件筛选数据 3 ''' 4 from random import randint 5 import timeit 6 #随机生成10个(-10,10)之间的数字 7 data = [randint(-10,10) for _ in range(10)] ... ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:27:14   
                                收藏:
0  评论:
0  赞:
0  阅读:
182
                             
                    
                        
                            
                            
                                Given a decimal integer number you will have to find out how many trailing zeros will be there in its factorial in a given number system and also you  ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:26:58   
                                收藏:
0  评论:
0  赞:
0  阅读:
151
                             
                    
                        
                            
                            
                                @ControllerAdvice public class ErrorHandler { @ExceptionHandler(Exception.class) String handleException(Exception e){ return "404.html"; } } ...
                            
                            
                                分类:
编程语言   时间:
2019-02-24 11:26:40   
                                收藏:
0  评论:
0  赞:
0  阅读:
244
                             
                    
                        
                            
                            
                                "Pseudo Random Numbers" Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 1064 Accepted Submission ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:26:22   
                                收藏:
0  评论:
0  赞:
0  阅读:
259
                             
                    
                        
                            
                            
                                Given two real numbers     B the width of the base of an isoceles triangle in inches     H the altitude of the ...
                            
                            
                                分类:
其他   时间:
2019-02-24 11:26:08   
                                收藏:
0  评论:
0  赞:
0  阅读:
168
                             
                    
                        
                            
                            
                                              Python : 3.7.0           OS : Ubuntu 18.04.1 LTS   ...
                            
                            
                                分类:
编程语言   时间:
2019-02-24 11:25:54   
                                收藏:
0  评论:
0  赞:
0  阅读:
232