码迷,mamicode.com
首页 >  
搜索关键字:comare version number    ( 48018个结果
Android的 EditText的inputType类型
android开发过程中突然发现的warningEditText 报出 “This text field does not specify an inputType or a hint”原因:EditText需要指定默认输入类型加入android:inputType="number|phone",表...
分类:移动开发   时间:2014-06-21 11:20:23    阅读次数:219
Leetcode:Combination Sum
Description:Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesame...
分类:其他好文   时间:2014-06-21 06:55:48    阅读次数:200
Leetcode:Letter Combinations of a Phone Number 手机键盘字母映射
Letter Combinations of a Phone Number:Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit...
分类:移动开发   时间:2014-06-21 00:56:16    阅读次数:261
小写数字转大写
--小写数字转大写,只是单纯的将数字转换为大写了,还要加单位create or replace function chinese(number1 number) return varchar2 is Result varchar2(30):=' '; v_chinese varchar2(25).....
分类:其他好文   时间:2014-06-21 00:14:41    阅读次数:199
明解C语言,练习13-3,从文件中读入个人信息,按身高排序后显示
#include #define NUMBER 6#define F_PATH "D:\\C_C++\\ec13-3\\hw.dat"typedef struct { char name[20]; int height; float weight;} student;void swap(studen...
分类:编程语言   时间:2014-06-21 00:08:26    阅读次数:321
Leetcode: Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The same repeate...
分类:其他好文   时间:2014-06-20 23:37:29    阅读次数:195
基于http协议的数据传输方式
//http://192.168.88.8/sns 服务器的主地址 //my/user_list.php 后续资源地址 //? 后代表参数 //page 数据的页码数 //number 代表获得的数据条数 //参数与参数间用 "...
分类:其他好文   时间:2014-06-20 23:29:26    阅读次数:229
Android -- ListView与Adapter
ListView在Android中有着很重要的作用。Android开发中ListView是比较常用的组件,它以列表的形式展示具体内容,并且能够根据数据的长度自适应显示。背景 建了个Person类,里面有Name,Number,id,三个属性。private String name; priva...
分类:移动开发   时间:2014-06-20 21:54:18    阅读次数:301
Oracle自增列创建方法
Oracle没有自增字段这样的功能,但是通过触发器(trigger)和序列(sequence)可以实现。先建一个测试表了:create table userlogin( id number(6) not null, name varchar2(30) not null primary key)tab...
分类:数据库   时间:2014-06-20 18:51:30    阅读次数:277
maven仓库地址
使用Maven进行开发的时候,比较常见的一个问题就是如何寻找我要的依赖,比如说,我想要使用activeMQ,可是我不知道groupId,artifactId,和合适的version。怎么办呢?本文介绍几个提供maven仓库搜索服务的站点。搜索出来结果后,把结果复制到pom.xml即可例如: or.....
分类:其他好文   时间:2014-06-20 17:17:52    阅读次数:186
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!