原文:https://blog.csdn.net/lcr_happy/article/details/54620148,建议使用第三中方式进行设置 在VMware Workstation下我使用的是Centos 6.8的环境。一般安装完之后是默认没有连接到网络上的,需要用户自己配置网络环境。 在配置 ...
分类:
系统相关 时间:
2018-06-26 23:45:32
阅读次数:
221
Xu言: Learning is not a happy thing, but happiness always comes with learning... - loki.valentine 学习并非快乐的事,但是快乐总是伴随着学习以后... Phonics -- 自然拼读法 An orange ...
分类:
其他好文 时间:
2018-06-26 01:10:46
阅读次数:
242
题目: 请实现一个函数,将一个字符串中的空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。 限制: 时间限制:1秒 空间限制:32768K 热度指数:616778 1 package com.algorithm; 2 3 /** ...
分类:
其他好文 时间:
2018-06-24 23:48:20
阅读次数:
205
//java8的4大核心函数式接口//1.Consumer<T>:消费性接口//需求:public void happy(double money, Consumer<Double> consumer){ consumer.accept(money);}@Testpublic void test() ...
分类:
编程语言 时间:
2018-06-24 19:20:37
阅读次数:
158
1. 表结构 1.1 在Mysql中的数据类型,longblob --> blob, longtext --> clob 2. 配置文件, 请参考 myBatis之入门示例 3. LOB.java 3.1 在Java中数据类型: byte[] --> BLOb , String --> CLOB 4 ...
分类:
其他好文 时间:
2018-06-24 18:01:04
阅读次数:
250
1 /** 2 * Copyright (C), 2015-2018, XXX有限公司 3 * FileName: DemoMain 4 * Author: happy 5 * Date: 2018/6/23 16:33 6 * Description: 7 * History: 8 * ... ...
分类:
其他好文 时间:
2018-06-24 00:49:15
阅读次数:
171
A - Happy Birthday! Time limit : 2sec / Memory limit : 1000MB Score: 100 points Problem Statement E869120's and square1001's 16-th birthday is coming ...
分类:
移动开发 时间:
2018-06-17 15:07:03
阅读次数:
237
问题 go thrift开发过程中,多个goroutine共用一个client时,报错: panic: runtime error: index out of range goroutine 24 [running]: happy apple/vendor/git.apache.org/thrift ...
分类:
其他好文 时间:
2018-06-17 11:33:42
阅读次数:
169
这两天发现Android Studio 的Flavors用起来相当给力!这里跟大家分享下: Flavors中文翻译过来叫“口味”,不知道确切叫法是啥,它的功能就是允许你的APP有多个不同的版本,不同版本的代码可以不一样,如多渠道打包(咦!这样看到中文渠道很贴切呀,哈哈),可以有baidu,360等等 ...
分类:
移动开发 时间:
2018-06-16 17:51:35
阅读次数:
232
问题描述: 请实现一个函数,把字符串的每个空格替换成"%20"。例如,输入"We are happy", 则输出"We%20are%20happy" O(n^2)从前向后替换。从头到尾扫描字符串,每次碰到空格字符的时候进行替换。假设字符串的长度是n,对每个空格字符,需要移动后面O(n)个字符,因此对... ...
分类:
其他好文 时间:
2018-06-16 12:05:27
阅读次数:
175