[cpp]view
plaincopyvoidCSTest1View::OnDraw(CDC*pDC){CSTest1Doc*pDoc=GetDocument();ASSERT_VALID(pDoc);//TODO:adddrawcodefornativedatahereCRectrcClient;...
分类:
其他好文 时间:
2014-05-01 07:47:58
阅读次数:
322
1.1) public class ReturnIt{2) returnType
methodA(byte x, double y){3) return (short)x/y*2;4) }5) }what is valid
returnType for methodA in line 2?这...
分类:
其他好文 时间:
2014-05-01 03:58:57
阅读次数:
330
这道题挺简单的,但是需要细心。最好的方法是先对string做预处理,然后再判断是否是回文。下面是AC代码:
1 /** 2 * Given a string, determine if it is a palindrome, considering only
alphanumeric ch...
分类:
其他好文 时间:
2014-05-01 01:45:34
阅读次数:
375
目前ios的指令集有以下几种:1,armv6,支持的机器iPhone,iPhone2,iPhone3G及对应的iTouch2,armv7,支持的机器iPhone4,iPhone4S3,armv7s,支持的机器iPhone5,iPhone5C4,arm64,支持的机器:iPhone5S机器对指令集的支...
分类:
其他好文 时间:
2014-04-30 16:55:59
阅读次数:
429
方法一:如果是Xcode 5的话步骤为 点击项目名称->Build
Settings->搜索 Architectures 这个里面的原始的值是Standard
architectures(armv7,armv7s,arm64) 点击这个值,在下拉列表框中选择Standard architecture...
分类:
移动开发 时间:
2014-04-30 03:50:54
阅读次数:
671
Validate if a given string is numeric.Some
examples:"0"=>true" 0.1 "=>true"abc"=>false"1
a"=>false"2e10"=>trueNote:It is intended for the problem stat...
分类:
其他好文 时间:
2014-04-29 16:45:45
阅读次数:
398
状况:suntus@suntus-virtual-machine:~$ sudo
apt-get install openssl-servicesudo: /etc/sudoers is mode 0777, should be
0440sudo: no valid sudoers sources ...
分类:
其他好文 时间:
2014-04-29 11:42:47
阅读次数:
552
Linux中的IO使用方法应该是新版本内核才有的方法。请参考:./Documentation/gpio.txt文件提供的API:驱动需要包含
#include 判断一个IO是否合法:int gpio_is_valid(int number);设置GPIO的方向,如果是输出同时设置电平:/* set
...
分类:
系统相关 时间:
2014-04-28 06:13:34
阅读次数:
800