java中i++问题的理解面试问题分析上周二面试中,碰到了一个有疑问的笔试题,在这里来详细分析一下,弄清楚问题缘由,解决迷惑,避免再出现同样的问题。下面是代码:for循环遍历20次,将count++的值复制给count,问最后count的结果是多少?public static void main(String[] args) throws Exception {
int count...
分类:
编程语言 时间:
2015-07-06 19:54:25
阅读次数:
126
Mac下搭建hexo3.0博客(文章同步自个人博客网站以及Github博客https://xingstarx.github.io/)window环境下搭建hexo博客具体内容可以参考这一篇文章如何搭建一个独立博客——简明Github Pages与Hexo教程本人博客搭建过程也是参考了上面的部分内容。安装Node.js和git安装Node.js到Node.js网站上下载后缀为pkg的文件,点击安装。...
分类:
系统相关 时间:
2015-07-06 19:53:36
阅读次数:
275
eclipse sdk从低版本切换到高版本sdk的时候 v7包会包这个错ERROR: In MenuView, unable to find attribute android:preserveIconSpacing
问题解决:
点击V7包找到values文件夹 打开attrs.xml ctrl+f 查找 MenuView 将preserveI...
分类:
移动开发 时间:
2015-07-06 19:54:25
阅读次数:
137
好饭不怕晚--记我的Oracle数据库生涯...
分类:
数据库 时间:
2015-07-06 19:53:04
阅读次数:
126
B+树在NTFS文件系统中的应用flyfish 2015-7-6卷(volume)
NTFS的结构首先从卷开始。卷对应于磁盘上的一个逻辑分区,当你将一个磁盘或者磁盘的一部分格式化成NTFS,卷将被创建起来。一个磁盘可以有一个卷或好几个卷.NTFS独立的处理每一个卷。
卷对应的就是C盘,D盘,E盘等。簇(cluster)
在一个NTFS卷中,簇的大小,或者说簇因子(cluster factor)...
分类:
Web程序 时间:
2015-07-06 19:55:04
阅读次数:
222
3D视频的播放
人眼产生立体效果的条件有两个:
1.需要左右眼两路影像,这两路影像是不同的,具有正确的视差;
2.进入左右眼的影像要完全分离,左影像进左眼,右影像进右眼。
第一条是对3D视频源提出的要求,视频源必须包括两路视频,这两路视频既有关系,又有差别。它们是在同一时刻、同一架3D摄像机(有两个摄像镜头,两镜头距离与人眼瞳距相近)拍摄的同一个场景所产生的两路视频。这两路视频...
分类:
其他好文 时间:
2015-07-06 19:54:04
阅读次数:
129
前言承接上一篇, 接下来介绍点击 Send 按钮后的操作。响应发送按钮1. res/layout 目录下。打开 activity_my.xml2. 在 元素里面,添加属性 android:onClickres/layout/activity_my.xml<Button
android:layout_width="wrap_content"
android:layout_hei...
分类:
移动开发 时间:
2015-07-06 19:54:04
阅读次数:
186
官网:https://developer.android.com/training/material/lists-cards.html
在你的应用程序,创建复杂的列表和卡片与材料设计风格,您可以使用RecyclerView和CardView部件。
创建列表
RecyclerView组件是一个更先进和灵活的版本的列表视图。这个小部件是一个非常有效率的容器,通过有限的view...
分类:
移动开发 时间:
2015-07-06 19:53:49
阅读次数:
130
### Rails 异常处理 的多种处理方法
1. routes match '*path', via: :all, to: 'controller#action'
2. application.rb 的 exception_app
```ruby
# application.rb
config.exceptions_app = ->(env) ...
分类:
其他好文 时间:
2015-07-06 19:53:39
阅读次数:
93
今天写了一个统计sql,在一个近亿条数据的表上执行,200s都查不出结果。SQL如下:
select customer,count(1) c
from upv_**
where created between "2015-07-06" and "2015-07-07"
group by customer
having c > 20
order by c desc
执行explain...
分类:
数据库 时间:
2015-07-06 19:52:22
阅读次数:
164
题意:给出n串字符串,问其中是否会有某串字符串是另一个字符串的前缀。
做法:不断加到Trie里,然后不断判断是不是其他字符串的前缀,或者已有的是不是自己的前缀。...
分类:
其他好文 时间:
2015-07-06 19:51:42
阅读次数:
172
创建控件- (void)createSegmentControl
{
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:@[@"全部", @"分类", @"进行中"]];
segmentedControl.frame = CGRectMake(80, 30, 180, 30...
分类:
其他好文 时间:
2015-07-06 19:50:35
阅读次数:
98
Given an integer, write a function to determine if it is a power of two.
判断一个数是否是2的幂,判断方法主要依据2的N次幂的特点:仅有首位为1,其余各位都为0.
方法1: n & n-1 == 0
class Solution {
public:
bool isPowerOfTwo(int n) {
...
分类:
其他好文 时间:
2015-07-06 19:50:52
阅读次数:
95
#pragma mark - 创建控件 UISlider
- (void)createSlider
{
// 也是继承与 UIControl
UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake(40, 80, 260, 27)]; // 设置颜色
slider.backgroundColor = [...
分类:
其他好文 时间:
2015-07-06 19:50:35
阅读次数:
109
#pragma mark - 创建控件 UISwitch- (void)createSwitch
{
UISwitch *aSwitch = [[UISwitch alloc] initWithFrame:CGRectMake(50, 150, 0, 0)]; [self addSubview:aSwitch];
[aSwitch release]; // 添加绑定事件...
分类:
其他好文 时间:
2015-07-06 19:51:42
阅读次数:
126
在springmvc中配置加载properties文件一般会在xml文件中配置如下: 如果希望在项目中添加了一个新的模块,并且希望新的模块和之前项目相...
分类:
编程语言 时间:
2015-07-06 19:51:34
阅读次数:
339
#pragma mark - 创建控件 UIStepper- (void)createSteppper
{
UIStepper *stepper = [[UIStepper alloc] initWithFrame:CGRectMake(130, 150, 50, 20)]; // 设置 stepper 最小值,默认是0
stepper.minimumValue = 20;...
分类:
其他好文 时间:
2015-07-06 19:49:42
阅读次数:
72