lua 73

#Lua
从相册或拍照获得头像

//开启上下文 UIGraphicsBeginImageContext(self.bounds.size); //获取上下文 CGContextRef ctx = UIGraphi…

2015-12-17 968

#Lua
如何在移动广告平台中IOS应用中集成插页式广告

一:前提条件 将 SDK 添加到Xcode项目部分。 二:将插页式广告添加到项目中 对于GADInterstitial,建议您采用如下的生命周期设置:在应用启动时预加载它,并在它准…

2015-12-17 141

#Lua
Java 编码例子

package org.test; import java.io.UnsupportedEncodingException; public class GetCharTest { …

2015-12-17 899

#Lua
直接插入排序,快速排序,选择排序给学生成绩排名

#include<stdio.h> #include<malloc.h> #include<string.h> typedef struct{ …

2015-12-17 559

#Lua
复制文件

/** 工具包: commons-io-1.3.2.jar */ //struts2 中 String realPath = ServletActionContext.getSer…

2015-12-17 667

#Lua
数制转换

#include<stdio.h> #include<stdlib.h> typedef int SElemType ; unsigned n;//非负整数…

2015-12-17 405

#Lua
APS算法-截取时间范围内的时间段

/// <summary> /// 截取时间范围内的时间段 /// </summary> public static List<SJDuan> …

2015-12-17 282

#Lua
javaweb学习

javaweb学习

2015-12-17 797

#Lua
linux下uname命令说明

当你输入uname不带参数时,它仅仅显示你的操作系统的名字。 # uname Linux 也许这还不能满足你的需要。所以你需要加上一些参数,来使uname显示你所需要的信息。 以下…

2015-12-17 875

#Lua
表达式运算(栈)

#include <stdio.h> #include <stdlib.h> #define STACK_INIT_SIZE 100 #define STA…

2015-12-17 273

#Lua
skynet的ssdb驱动

local skynet = require "skynet" local socket = require "socket" local socketchannel = requ…

2015-12-14 109