码迷,mamicode.com
首页 >  
搜索关键字:void    ( 62627个结果
Android打开系统的Document文档图片选择
打开Document UI 过滤图片 private void startAcitivty() { Intent intent = new Intent(); intent.setAction("android.intent.action.GET_CONTENT")...
分类:移动开发   时间:2015-11-06 14:43:47    阅读次数:258
探索A@1db9742
public class S { /** * @param args */public static void main(String[] args){ System.out.println(new A()); }}class A{}A@1db9742public void println(Ob.....
分类:数据库   时间:2015-11-06 14:22:41    阅读次数:178
Java基础-学习笔记(八)——函数的参数传递
1、基本数据类型的参数传递 1 class PassValue 2 { 3 4 public static void main(String [] args) 5 { 6 int x=5; 7 change(x); 8 Sys...
分类:编程语言   时间:2015-11-06 13:07:00    阅读次数:185
IOS willMoveToParentViewController和didMoveToParentViewController的使用
在iOS 5.0及以后,iOS为UIViewController类添加了新的属性和方法:@property(nonatomic,readonly)NSArray*childViewControllers-(void)addChildViewController:(UIViewController*)...
分类:移动开发   时间:2015-11-06 13:01:36    阅读次数:158
Dynamic Expression.Call Any
public class Foo { public IList Strings { get; set; } } class Program { static void Main(string[] args) { ...
分类:其他好文   时间:2015-11-06 12:58:12    阅读次数:146
POJ3468(线段树区间维护)
#include#define lson n>1using namespace std;const int MAX_N=100005;typedef long long LL;struct node{ int l,r; LL sum,lazy;}a[MAX_N<<2];void Push...
分类:其他好文   时间:2015-11-06 12:41:17    阅读次数:201
C# Array.FindAll
1 string[] arrySource = { "C#111", "C#22222", "C222", "safdaf", "Cwedad" }; 2 string[] tempResult; 3 private void Form1_Load(object sender, EventA...
分类:Windows程序   时间:2015-11-06 12:39:18    阅读次数:190
距离传感器的使用
- (void)ViewDidLoad { // 打开距离传感器,开启距离检测功能 [UIDevice currentDevice].proximityMonitoringEnabled = YES;// 监听距离改变 [[NSNotificationCenter defaultCent...
分类:其他好文   时间:2015-11-06 12:35:34    阅读次数:147
Unity3D GUI学习
Unity3D内置有GUI,首先,使用GUI实现一个按钮,并且点击实现触发, void OnGUI() { //GUI.Button (new Rect (10,10,50,50), "nihaoa "); if(GUI.Button(new Rect (50, 50, 50, 50),"But.....
分类:编程语言   时间:2015-11-06 12:32:46    阅读次数:239
接口与继承:方法覆盖(super)
源代码//父类Parentclass Parent{ int x; int y; Parent() { x = 0; y = 0; } public void Set(int a,int b) { x = a; ...
分类:其他好文   时间:2015-11-06 11:05:25    阅读次数:150
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!