码迷,mamicode.com
首页 >  
搜索关键字:servicestack 官方案例 example 要点说明    ( 18087个结果
Android实现自定义view---绘制图片
主要原理是:extends view重载onDrow(),需要一bitmap,重载view,在 canvas上画临时bmp,当按下确定的时候按下    画到real_bmp上,其他的跟前面的基本上没有什么区别。    import com.example.test.R; import android.app.Activity; import android.content.Con...
分类:移动开发   时间:2014-05-10 09:23:24    阅读次数:601
LeetCode: Triangle 题解
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他好文   时间:2014-05-08 21:08:25    阅读次数:407
C++ Multithread Tutorial
---恢复内容开始---Example 1Creating and terminating thread by usingpthread_create, pthread_exit(status)#include #include #include using namespace std;#defin...
分类:编程语言   时间:2014-05-07 17:41:05    阅读次数:335
Leetcode | Binary Tree Maximum Path Sum
Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, 1 ...
分类:其他好文   时间:2014-05-07 09:36:09    阅读次数:300
linux下C语言多线程编程实例
学东西,往往实例才是最让人感兴趣的,老是学基础理论,不动手,感觉没有成就感,呵呵。下面先来一个实例。我们通过创建两个线程来实现对一个数的递加。或许这个实例没有实际运用的价值,但是稍微改动一下,我们就可以用到其他地方去拉。下面是我们的代码:/*thread_example.c : c multipl....
分类:编程语言   时间:2014-05-07 09:07:03    阅读次数:519
Android常见UI组件之ListView(一)
使用ListView显示一个长的项列表 1、新建一个名为“BasicView5”的Android项目; 2、修改BasicView5.java文件,修改后的程序如下: package com.example.basicview5; import android.os.Bundle; import android.app.Activity; import android.app.ListAc...
分类:移动开发   时间:2014-05-07 08:56:38    阅读次数:447
Activity
package com.example.activity2; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.TextView; public class MainActivi...
分类:其他好文   时间:2014-05-07 05:19:34    阅读次数:349
android listview左右滑动分页(viewpager嵌套listview进行分页),焦点图带圆焦点
1、先上图后说话 2、代码 package com.example.exmp; import java.util.ArrayList; import java.util.List; import android.content.Context; import android.os.Parcelable; import android.support.v4.view.PagerAda...
分类:移动开发   时间:2014-05-04 18:43:02    阅读次数:585
codechef Permutation Cycles 题解
We consider permutations of the numbers 1,..., N for some N. By permutation we mean a rearrangment of the number 1,...,N. For example 2  4  5  1  7  6  3  8 is a permutation of 1,2,...,8. Of cours...
分类:其他好文   时间:2014-05-04 18:38:14    阅读次数:341
Permutations II
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique perm...
分类:其他好文   时间:2014-05-04 10:20:44    阅读次数:240
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!