代码改变世界

数据库大小分布情况

2012-03-21 14:58 by java环境变量, 269 阅读, 0 推荐, 收藏, 编辑
摘要:---数据库大小分布情况SET NoCount ONCREATE TABLE #DBsize ( [DatabaseName] [nvarchar](75) NOT NULL , [Size] [decimal] NOT NULL , [Name] [nvarchar](75) NOT NULL , [Filename] [nvarchar](300) NOT NULL )CREATE TABLE #drives ( [Drive] [char](5) NOT NULL , [MBFree] [decimal] NOT NULL )INSERT INTO #DBsize EXEC sp_MSf 阅读全文

SOUND SERVICE系统音效服务+震动功能实现

2012-03-21 13:57 by java环境变量, 376 阅读, 0 推荐, 收藏, 编辑
摘要:2010-9-26 22:19:18 上传下载附件(42.9 KB)PlaySoundDemo1ViewController.h#import <UIKit/UIKit.h>#include <AudioToolbox/AudioToolbox.h>@interface PlaySoundDemo1ViewController : UIViewController { IBOutlet UISwitch *swcallback; IBOutlet UIPickerView *soundPicker; NSArray *soundData; SystemSoundID s 阅读全文

[电源、屏保、闹钟、日程、墙纸] UILocalNotification实现本地的闹钟提醒的方法。

2012-03-21 13:36 by java环境变量, 337 阅读, 0 推荐, 收藏, 编辑
摘要:UILocalNotification *notification=[[UILocalNotification alloc] init]; if (notification!=nil) { NSDate *now=[NSDate new]; //notification.fireDate=[now addTimeInterval:period]; notification.fireDate = [now dateByAddingTimeInterval:period]; NSLog(@"%d",period); notification.time... 阅读全文

实现 QQLive HD 界面的代码

2012-03-21 13:34 by java环境变量, 249 阅读, 0 推荐, 收藏, 编辑
摘要:实现 QQLive HD 界面的代码总的来说QQLive HD 的主界面分成几个部分:电视屏幕窗口 实现方法:使用UIPageControl和UIScrollView实现。//添加一个PageControl控件,显示热点图片 m_pPageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(340, 378, 200, 50)]; if(m_pPageControl == nil) { return; } [m_pPageControl setNumberOfPages:5]; [m_pPageControl ad... 阅读全文

窗口的简单动画

2012-03-21 13:28 by java环境变量, 353 阅读, 0 推荐, 收藏, 编辑
摘要:刚刚看到一个窗口动画,给弄个简单例子!创建一个基于view-based的工程,然后添加头文件#import <QuartzCore/QuartzCore.h>和其frameworks然后修改代码!代码实例如下:- (void)viewDidLoad { [super viewDidLoad]; //创建一个内框图 CGRect myImageRect = CGRectMake(0.0f, 0.0f, 320.0f, 200.0f); UIView *myView = [[UIView alloc] initWithFrame:myImageRect]; myView.b... 阅读全文

NSRunLoop的进一步理解

2012-03-21 13:24 by java环境变量, 260 阅读, 0 推荐, 收藏, 编辑
摘要:本文基于一篇网络文章,加入了一些自己的理解,希望对大家有所帮助iPhone应用开发中关于NSRunLoop的概述是本文要介绍的内容,NSRunLoop是一种更加高明的消息处理模式,他就高明在对消息处理过程进行了更好的抽象和封装,这样才能是的你不用处理一些很琐碎很低层次的具体消息的处理,在NSRunLoop中每一个消息就被打包在input source或者是timer source中了,来看详细内容。1.什么是NSRunLoop我们会经常看到这样的代码:- (IBAction)start:(id)sender{pageStillLoading = YES;[NSThread detachNewT 阅读全文

触发器-1

2012-03-21 09:14 by java环境变量, 243 阅读, 0 推荐, 收藏, 编辑
摘要:------------------------------------环境代码create table student(stuid varchar2(10) not null,stuname varchar2(10) not null,sex char(2));create table subject (subjectid int,subjectname varchar2(10));create table score(stuid int,subjectid int,score int);insert into student values (1001, 'wind', &# 阅读全文

STL 整理(map、set、vector、list、stack、queue、deque、priority_queue)

2012-03-20 13:58 by java环境变量, 273 阅读, 0 推荐, 收藏, 编辑
摘要:向量(vector)<vector>连续存储的元素<vector>Vector<int>c;c.back()传回最后一个数据,不检查这个数据是否存在。c.clear() 移除容器中所有数据。c.empty()判断容器是否为空。c.front() 传回地一个数据。c.pop_back() 删除最后一个数据。c.push_back(elem) 在尾部加入一个数据。c[i]等同于 c.at(i);列表(list)<list>由节点组成的双向链表,每个结点包含着一个元素<list>list<int>list1(1,2,3)fron 阅读全文

子程序和程序包-4

2012-03-20 09:19 by java环境变量, 234 阅读, 0 推荐, 收藏, 编辑
摘要:----程序包--案例09:程序包试验1/*步骤1:新建包*/CREATE OR REPLACE PACKAGE pack_me IS PROCEDURE order_proc (orno VARCHAR2); FUNCTION order_fun(ornos VARCHAR2) RETURN VARCHAR2;END pack_me;/*步骤2:新建包主体*/CREATE OR REPLACE PACKAGE BODY pack_me AS PROCEDURE order_proc (orno VARCHAR2) IS stat CHAR(1); BEGIN SELECT ostatus I 阅读全文

poj 3273 Monthly Expense ----二分

2012-03-19 21:15 by java环境变量, 230 阅读, 0 推荐, 收藏, 编辑
摘要:Monthly ExpenseTime Limit:2000MSMemory Limit:65536KTotal Submissions:7872Accepted:3241DescriptionFarmer John is an astounding accounting wizard and has realized he might run out of money to run the farm. He has already calculated and recorded the exact amount of money (1 ≤moneyi≤ 10,000) that he wil 阅读全文
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 55 下一页