牛骨文教育服务平台(让学习变的简单)
博客笔记
10
2014-01
spring组件扫描<context:component-scan/>使用详解 2014-01-10
好文章,原文地址:http://blog.sina.com.cn/s/blog_57769b7b0100tt5x.html 关于spring自动检测组件的使用方式网上太多了,而且也不是我记录的重点,我想说下
22
2017-05
PL sql概述+代码编写规则+标识符命名规则+大小写规则 2017-05-22
代码编写规则 1 标识符命名规则 标识符必须以字符开始,长度不大于30个字符 建议 定义变量:v_变量名 定义常量:c_常量名 定义游标:_cursor 定义异
17
2013-08
java命名大小写规范... 2013-08-17
maven/Java/web/bootstrap/dataTable/app开发QQ群:566862629。希望更多人一起帮助我学习。 1.常量:都用大写。如:public static final String DBDRIVER="....."; 2.类的名
06
2018-02
tp5伪静态设置 2018-02-06
nginx location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } } apache Options +FollowSymlinks -Multiviews RewriteEng
01
2018-02
tp5 Validate验证规则 2018-02-01
系统内置的验证规则如下: 1格式验证类 require   验证某个字段必须,例如:"name"=>"require" number 或者 integer   验证某个字段的值是否为数
14
2017-11
tp5的一些基本配置与规则 2017-11-14
Tp框架的基本配置文件作用: Command.php => 控制台配置文件 Common.php => 项目的公共文件 Config.php => 应用的配置文件 database.php => 数据库配置文件 route.php
10
2018-04
LeetCode两数之和 2018-04-10
给定一个整数数列,找出其中和为特定值的那两个数。 class Solution { public int[] twoSum(int[] nums, int target) { TreeMap map=new TreeMap();//hashmap都可
25
2018-03
leetCode两数之和 2018-03-25
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: /***********
29
2018-03
[LeetCode] 两数之和 2018-03-29
英文描述 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the
15
2018-04
LeetCode 两数之和 2018-04-15
O(n)复杂度:利用哈希查找(即:map)来寻找某元素注:Map是映射,别想成数组。class Solution { public: vector twoSum(vector& nums, int target) { unordered_m