将日志的error和info分别打印输出,以便于查看### set log levels ### log4j.rootLogger=info,error,info log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appende... ...
分类:
其他好文 时间:
2017-10-15 21:16:10
阅读次数:
187
Linux centos重启命令: 1、reboot 2、shutdown -r now 立刻重启(root用户使用) 3、shutdown -r 10 过10分钟自动重启(root用户使用) 4、shutdown -r 20:35 在时间为20:35时候重启(root用户使用) 如果是通过shut ...
分类:
系统相关 时间:
2017-10-09 22:49:49
阅读次数:
222
##content: Levels of transformation: Problem, algorithm, program/language, runtime system, instruction set architecture, microarchitecture, logic, cir ...
分类:
其他好文 时间:
2017-10-07 18:44:41
阅读次数:
155
Given a non-empty binary tree, return the average value of the nodes on each level in the form of an array. Example 1: Input: 3 / \ 9 20 / \ 15 7 Outp ...
分类:
其他好文 时间:
2017-09-26 21:18:37
阅读次数:
158
chkconfig的用法:- chkconfig [--list] [--type <type>] [name] 显示所有运行级系统服务的运行状态信息- chkconfig --add <name> 增加一个服务 - chkconfig --del <name> 删除一个服务 - chkconfig ...
分类:
系统相关 时间:
2017-09-26 21:06:33
阅读次数:
208
Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 翻转二叉树,本题属于容易题题目容易理解,可以通过层次遍历方法进行反转,类似【637. Average of Levels in Binary Tr ...
分类:
其他好文 时间:
2017-09-26 21:03:14
阅读次数:
198
前言 前段时间完成了自己的小游戏Konster的制作,今天重新又看了下代码。原先对关卡解锁数据的存储时用了Unity自带的PlayerPref(字典式存储数据)。 读取关卡数据的代码: 某一关通关时,解锁下一关: 个人觉得虽然使用起来方便,但是如果我想存取一些对象结构数据的话很麻烦,于是自己试着写了 ...
分类:
编程语言 时间:
2017-09-22 22:35:36
阅读次数:
1813
注意:rc.local脚本里面启动的用户默认为root权限。 一、rc.local脚本 rc.local脚本是一个Ubuntu开机后会自动执行的脚本,我们可以在该脚本内添加命令行指令。该脚本位于/etc/路径下,需要root权限才能修改。 该脚本具体格式如下: 注意: 一定要将命令添加在exit 0 ...
分类:
系统相关 时间:
2017-09-22 11:42:56
阅读次数:
218
Given a non-empty binary tree, return the average value of the nodes on each level in the form of an array.Example 1:Input: 3 / \ 9 20 / \ 15 7Output:... ...
分类:
编程语言 时间:
2017-09-20 23:08:55
阅读次数:
232
Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maximum width among all levels. The binar ...
分类:
其他好文 时间:
2017-09-18 01:18:26
阅读次数:
240