Question: pip install mysql-python fails with EnvironmentError: mysql_config not found ...
Question: pip install mysql-python fails with EnvironmentError: mysql_config not found ...
之 Spring处理注解的源码分析 管理注解bean定义的两个容器: AnnotationConfigApplicationContext AnnotationConfigW...
[LeetCode-78] SubSets Given a set of distinct integers, nums, return the possible subse...
[Leetcode-421] Maximum XOR of Two Number in an Array? Given a non-empty array of number...
Trie 树,字典树,try树。Trie 根节点不存在字符。从根节点开始,每个节点都是一个字符,通过路径连接起来。可以用数组,HashMap,和指针动态分配。优势:时间复杂度...
欲了解AOP,需先了解Java动态代理;欲了解Java动态代理,先熟悉设计模式之代理模式。入门有道,先从简学。 1. 设计模式 之 代理模式 引言:消费者本应该直接从工厂购买...
之 Spring处理注解的源码分析 管理注解bean定义的两个容器: AnnotationConfigApplicationContext AnnotationConfigW...
线程、进程的区别 进程、线程的生命周期 进程、线程的间的通信方式 多线程 3种创建方式 继承Thread类 implements Runnable接口 使用 Executor...
之 Java如何识别注解 关键词:Java 反射java.lang.reflect 包,实现反射功能的工具类。注解处理类库:java.lang.reflect.Annotat...
之 Java中如何自定义注解 1.先看注解定义示例 @Override 源码定义: 使用@interface 表示这是一个注解类。自动继承了java.lang.annotat...
之 Java元注解释义 Question 注解在Java中如何起作用? Spring是如何识别注解? 如何自定义注解为我所用? Spring注解:@Aotuwired @R...
maven中自定义插件。 1.maven pom.xml 中配置jetty插件 2.pom.xml 中配置maven-compiler-plugin插件 The Compil...
负载均衡(Load Balance) 模拟IP列表的类 1. 轮询法 轮询调度算法原理:每一次把来自用户的请求轮流分配给内部的服务器。从1开始,到N(内部服务器个数),然后重...
Question 对于一个无符号整型变量,求其二进制表示中1的个数。[题目来源:编程之美] Note 算法一:与0x01位与,右移位。 算法二:n & (n-1)。 Exte...
Question Given a non-empty array of integers, return the third maximum number in this a...
Question Given an array of n integers, are there elements a, b, c, such that a+b+c = 0?...