禁止用户屏幕旋转。 这点可以肯定的说是做不到的,之前因为有项目需要禁止屏幕旋转,所以网上查阅了大量的资料,发现根本没有解决办法,在移动版webkit中根本做不到。苹果api也说明了,我们为了让用户在safari中正常的浏览网页,我们必须保证用户的设备处于任何一个方位时,safari都能够正常的显示网 ...
分类:
其他好文 时间:
2017-03-17 16:46:45
阅读次数:
233
Spring Bean: 被称作bean的对象是构成应用程序的支柱,是由Spring Ioc容器管理。bean是一个被实例化,配置、组装并由Spring Ioc容器管理对象。 官网API:A Spring IoC container manages one or more beans. These ...
分类:
编程语言 时间:
2017-03-17 14:42:39
阅读次数:
146
适配器模式 现在有这样一个场景,某公司有一群动物,各种动物会吃饭,说话,普通实现方式就是写一个父类,其子类去继承父类实现该方法; 现在其他动物要进来,不过他们调用的方式是doTalk和doEat两种方法,如果实现的话就是直接在增加两个方法 可是以后陆续增加其他动物,程序员的工作量就特别大,如果要修改 ...
分类:
Web程序 时间:
2017-03-17 13:32:13
阅读次数:
176
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below ...
分类:
其他好文 时间:
2017-03-16 23:48:17
阅读次数:
219
Unintuitive effects and their consequences. Notice that if one of the inputs to the multiply gate is very small and the other is very big, then the mu ...
分类:
其他好文 时间:
2017-03-16 21:33:47
阅读次数:
174
1.此代码涉及随机数生成,指针的使用。 2.编程中忘记加库文件stdlib,利用百度解决了这个问题。 ...
分类:
其他好文 时间:
2017-03-16 20:39:53
阅读次数:
127
A: Anton and Polyhedrons(水题) B: Anton and Classes(水题) C: Anton and Fairy Tale(二分) 思路:m>=n时 ans=n;m<n时 前m天都能补满,第m+1天时就要开始减少了,n-m-(x+1)*x/2是m天后第x天的剩余,二分 ...
分类:
其他好文 时间:
2017-03-16 20:27:39
阅读次数:
163
1.当要获取某个数据列表中的某个字段时,用“.”附加的形式。例如:获取user中的balance字段,用this.props.user.balance 来表示。 2.当要打印某个数据或字段结果时,console.log(); , 例如: console.log("获得的balance结果是=",th ...
分类:
其他好文 时间:
2017-03-16 20:07:20
阅读次数:
179
微信推送给服务器的XML消息解析; 可以使用request.getInputStream(); 获取输入的消息流;但是需要自己解析流; spring mvc自带解析功能; controller中: model对象,这个也是mybatis的使用对象; ...
分类:
微信 时间:
2017-03-16 20:01:09
阅读次数:
1264
// String columnNames[]={ "提现金额"};//excel表 头名 String columnNames[]={ "用户id", "姓名", "身份证号","银行卡号","开户行","提现金额","提现时间","提现状态","提现前余额"}; // String keys[] ...
分类:
其他好文 时间:
2017-03-16 19:13:13
阅读次数:
172