码迷,mamicode.com
首页 >  
搜索关键字:art    ( 45817个结果
appdelegate文件中可能会用到的方法
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ // Override point for customization aft....
分类:移动开发   时间:2014-08-08 11:55:36    阅读次数:306
uibutton 使用settitle后如何修改其中文字对齐方式
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; btn.frame = CGRectMake(5, self.alertView.lableView.frame.size.height + self.checkBox.fra...
分类:其他好文   时间:2014-08-08 11:55:15    阅读次数:246
登录界面制作以及设备版本号上传
#import #import "SRWebSocket.h"@interface ViewController : UIViewController//- (IBAction)SaveLogin:(id)sender;@property (weak, nonatomic) IBOutlet UIT...
分类:其他好文   时间:2014-08-08 11:50:25    阅读次数:249
启动*.exe程序
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); startInfo.Arguments = String.Format("{0} {1} {2}", ...
分类:其他好文   时间:2014-08-08 11:49:55    阅读次数:136
MemSQL Start[c]UP 2.0 - Round 1(无聊练手B题)
http://codeforces.com/contest/452/problem/BB. 4-point polylinetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputs...
分类:数据库   时间:2014-08-08 09:34:46    阅读次数:281
CreateProcess的使用方法
使用编译器vs2008。第一、第二个參数的使用方法:样例:使用ie打开指定的网页。注意第二个參数是 可运行文件+命令行參数#include "stdafx.h"#include #include int main(int argc, char* argv[]) { STARTUPINFO si...
分类:其他好文   时间:2014-08-08 09:34:05    阅读次数:186
contos下安装JDK1.7 ,tomcat,nginx
CentOS下的jdk安装 1.先在网上下载好JDK的安装包,然后把安装包放在usr/local/Java目录下(放在哪里就看个人习惯了) 2.打开终端 1>cd /usr/local/java (定位到文件夹/usr/local/Java) 2>tar zxvf jdk-7u51...
分类:其他好文   时间:2014-08-08 09:33:55    阅读次数:249
HDU 3911 区间合并求最大长度的问题
http://vjudge.net/problem/viewProblem.action?id=21557题目大意:每进行一次颜色改变都可以把一段区间内的黑石头变成白石头,白石头变成黑石头,最后问区间内黑石头连续的最大长度这里我们可以用rev[]作为lazy标记,每次进行改变,rev[]^1因为有黑...
分类:其他好文   时间:2014-08-08 09:33:45    阅读次数:352
Qt编程之d指针与q指针
我们在Qt中可以看到两个宏Q_D和Q_Q这两个红分别是取得d指针和q指针的,d指针指向封装的私有类,q指针指向公共的类。(我的理解类似于回调,回指的意思)。为什么Qt要这样实现呢?下面几个链接中的文章都做了解析和实现。http://blog.csdn.net/mznewfacer/article/d...
分类:其他好文   时间:2014-08-08 09:33:05    阅读次数:254
LeetCode "Word Break"
My first solution was DFS - TLE. Apparently, DFS with TLE usually means DP.1D DP + Rolling Array:class Solution {public: bool wordBreak(string s, u...
分类:其他好文   时间:2014-08-08 08:27:25    阅读次数:280
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!