1. 在 Java 8 之前,接口只能有抽象方法。这些方法的实现必须在单独的类中提供。因此,如果要在接口中添加新方法,则必须在实现同一接口的类中提供其实现代码。为了克服这个问题,Java 8 引入了默认方法(default method)的概念,该方法允许接口具有实现的方法,而不会影响实现接口的类。 // A simple program to Test Interface default // methods in java interface TestInterface { ...

    阅读全文
  2. Saleforce初体验,截图以便日后参考。 1. request trial usage. 2. 登录Saleforce并开始体验之旅 3. 体验4个解说。 3.1 追随潜在客户 3.2   3.2 为你的漏斗助力 3.3 开辟自己的道路     3.4 使用图 ...

    阅读全文
  3. https://docs.oracle.com/middleware/1221/wls/WLACH/taskhelp/domainconfig/EnableTheDomainwideAdministrationPort.html#WLACH01108   Before you begin The administration port accepts only secure, SSL traffic, and all connections via the p ...

    阅读全文
  4. React的虚拟的DOM的原理是什么?是怎么实现的? 本文摘自 https://www.zhihu.com/question/29504639 链接:https://www.zhihu.com/question/29504639/answer/73607810   深度剖析:如何实现一个 Virtual DOM 算法 · Issue #13 · livoras/blog · GitHub   ...

    阅读全文
  5. Question words Question words - 疑问词 常用的疑问词包括: 谁 Who 什么时候 When 什么 What 哪里 Where 为什么 Why 怎样 How 多大(年纪) How old 多大(大小) ...

    阅读全文
  6. Bcrypt password在线生成器:https://www.browserling.com/tools/bcrypt ...

    阅读全文
  7. Expressions of time and place Expressions of time and place - 时间和地点状语 在英语中, 时间状语一般置于句尾。   例如: Let's meet on Tuesday.   (我们周二见面吧。)   Do you want to go at 9?   ...

    阅读全文
  8. Wiring Components to Work Together This chapter describes service tables and how to wire particular Oracle Fusion Middleware components together. It contains the following sections: Understanding Service Tables Viewing Service ...

    阅读全文
  9. Crunchbase https://www.crunchbase.com/search/organization.companies/field/organizations/rank_org_company/7817 Discover innovative companies and the people behind them 通过这个网站你可以看到什么?   G2Crowd https://www.g2crowd.com/ ...

    阅读全文
  10. geohash2020-05-27
    40160

    geohash.org   ...

    阅读全文
  11. # 下载到/var/www/php5目录下 cd /var/www/php5 wget http://mirrors.sohu.com/php/php-5.5.7.tar.gz # 解压 tar zxvf php-5.5.7.tar.gz # 进入PHP的openssl扩展模块目录 cd php-5.5.7/ext/openssl/ /var/www/php5/bin/phpize # 这里为你自己的phpize路径,如果找不到,使用whereis ...

    阅读全文
  12. 软件开发会涉及的几个方面。 现在有一个软件项目需要开发,假设你就是项目project leader。那你需要如何管理软件开发呢,有哪些需要考虑的呢?假设你就是一个纯技术管理人员,先不考虑人员和成本。 软件开发 软件测试 软件部署 软件交付和实施 流程管理 代码版本管理 发布管理 Release管理 开发模式 软件开发 常用功能分解(面向对象面向功能设计) 查询 配置 用户 安全 日志 ...

    阅读全文
  13. 本文记录Spring学习过程中觉得不错的学习资料和经验分享文章。本文不断更新。。 学习前需要了解的Knowledge Path Servlet Java annotation -> Lombok Spring framework(Core) -> SpringMVC -> SpringBoot ->Maven -> MyBatis -> SpringCloud    学习资料: 源码 S ...

    阅读全文
  14. AngularJS 通过新的属性和表达式扩展了 HTML。AngularJS 可以构建一个单一页面应用程序(SPAs:Single Page Applications)。 AngularJS是采用了MVVM架构。 The following is the list of allowed and forbidden dependencies: 1.The View's code behind should not reference the ViewModel ...

    阅读全文
  15. 本文摘自https://blog.csdn.net/cuibo1123/article/details/25204387   软件项目一般包括解决方案、开发、维护、系统集成等。以下将分别介绍软件开发价格、软件(系统)维护价格、系统集成价格、系统解决方案费用的价格估算方法,以供大家参考。   1.软件开发价格估算方法    软件开发价格与工作量、商务成本、国家税收和企业利润等项有关。为了便于计算,给出一个计算公式: ...

    阅读全文
  16. Simple present 一般现在时态用于描述客观事实或经常、反复发生的行为。在进行提问或否定时,需要用到助动词 do,或 does, don't, doesn't 等。   例如: She lives in New York.   (她住在纽约。)   Does she work in a bank? &nb ...

    阅读全文
  17. 本文是学习springmvc官方文档的学习摘要。 https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-servlet   知识点 1) DispatcherServlet DispatcherServlet WebApplicationInitializer AbstractAnnotationConfig ...

    阅读全文
  18. 下面三个命令都可以查看linux操作系统的版本信息 cat /etc/os-release lsb_release -a hostnamectl cat /etc/os-release [test@test01 ~]$ cat /etc/os-release NAME="Oracle Linux Server" VERSION="7.4" ID="ol" VERSION_ID=" ...

    阅读全文
  19. 39840

    http://www.artfulsoftware.com/mysqlbook/sampler/mysqled1ch20.html https://www.jianshu.com/p/6881b9ec1759 ...

    阅读全文
  20. JAVA8的java.util.function包 https://www.cnblogs.com/linzhanfly/p/9686941.html java.util.function.Function的用法 https://www.jianshu.com/p/3c27dfd647f1 https://blog.csdn.net/huo065000/article/details/78964382 java8双冒号用法: https://www.jians ...

    阅读全文