By Andrei Alexandrescu, October 01, 2004
Post a Comment
Lock-free data structures guarantee the progress of at least one thread when executing mutlithreaded procedures, thereby helping you avoid d...
分类:
其他好文 时间:
2014-08-11 18:01:02
阅读次数:
384
Round 1(Bar Raiser):Complete discussion on my project.Suppose you have a file with billion entries and you have to sort the data of a file according t...
分类:
其他好文 时间:
2014-08-10 08:07:59
阅读次数:
191
Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining. 1...
分类:
移动开发 时间:
2014-08-10 01:34:09
阅读次数:
375
Properly stopping and restarting your activity is an important process in the activity lifecycle that ensures your users perceive that your app is always alive and doesn't lose their progress. There are a few of key scenarios in which your activity is stop...
分类:
移动开发 时间:
2014-08-09 02:36:17
阅读次数:
496
转载自:http://blog.csdn.net/volcan1987/article/details/14227313iOS7里status bar的实现跟iOS6下有写不一样,前段时间碰到了这个问题,今天总结下首先网上有很多解决办法,但是有些我觉得并没有按照苹果的思路来,比如把UIViewCon...
分类:
移动开发 时间:
2014-08-08 20:48:36
阅读次数:
233
1.首先,苹果把UIViewControllerBasedStatusBarAppearance默认的值设为YES,是有他的道理的,新系统下,苹果希望我们的viewcontroller去控制status bar,也就是说,我们大多数的界面应该是统一的,偶尔一些viewcontroller需要stat...
分类:
移动开发 时间:
2014-08-08 20:40:06
阅读次数:
226
状态栏的字体为黑色:UIStatusBarStyleDefault
状态栏的字体为白色:UIStatusBarStyleLightContent
一、在info.plist中,将View controller-based status bar appearance设为NO
状态栏字体的颜色只由下面的属性设定,默认为白色:
// default is UIStatu...
分类:
移动开发 时间:
2014-08-08 18:14:36
阅读次数:
250
var myChart= echarts.init(document.getElementById('myChart'));
myChart.on('click', function (param) {
alert('点击了我!');
});
Echart事件参数可以去config.js查找...
分类:
其他好文 时间:
2014-08-08 12:49:45
阅读次数:
772
Trapping Rain WaterGivennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to tr...
分类:
移动开发 时间:
2014-08-08 12:30:45
阅读次数:
193
IBM Cognos BI包含以下类型的图:Column charts:柱形图表(柱状图),柱形图一般表示量的多少Line charts:线形图表(折线图)Pie charts:饼图Bar charts:直方图,直方图是用矩形的宽度和高度来表示频数分布的图形Area chart:面积图Point c...
分类:
其他好文 时间:
2014-08-07 15:37:20
阅读次数:
303