码迷,mamicode.com
首页 >  
搜索关键字:example    ( 17798个结果
Java中接口(interface)和抽象类(abstract)的区别
Java中,接口和抽象类很普遍也很相似,但是初学者在实际写代码中大部分都用接口,抽象类很少用,而且也不怎么注意二者的比较, 哎,没错,就是我了,唉,随着时间的流逝越发觉得自己菜的一批。 (1)首先我们先从表现形式上来看一下区别: 接口interface:关键字是interface,用来被类实现,可以 ...
分类:编程语言   时间:2020-06-28 14:51:09    阅读次数:63
1169. Invalid Transactions
问题: 给定由【姓名,时间,数额,城市】组成的交易信息数组。 求无效交易的数组。 无效:1 or 2满足 1,数额>1000 2,相同姓名,不同城市,时间差<60 Example 1: Input: transactions = ["alice,20,800,mtv","alice,50,100,b ...
分类:其他好文   时间:2020-06-28 12:36:38    阅读次数:52
0345. Reverse Vowels of a String (E)
Reverse Vowels of a String (E) 题目 Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Input: "hello" Out ...
分类:其他好文   时间:2020-06-28 09:27:54    阅读次数:41
[LeetCode] 279. Perfect Squares
Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n. Example 1: Input: n = 12 O ...
分类:其他好文   时间:2020-06-28 09:27:41    阅读次数:56
Oracle character set
Based on Oracle, processing an English character takes 1 byte, but 3 bytes for a Chinese character. For example: select ename, length(ename), lengthb( ...
分类:数据库   时间:2020-06-27 20:30:11    阅读次数:74
Fly Weight Pattern (享元模式, 共享元数据)
##Question Analysis Introduction Example // Website.java public abstract class Website { public abstract void use(); } //ConcreteWebsite.java public c ...
分类:其他好文   时间:2020-06-27 20:01:58    阅读次数:71
Adapter Pattern
Adapter An Example // Voltage220V.java public class Voltage220V { public int output220V(){ int src = 220; System.out.println("Voltage = " + src +"V"); ...
分类:其他好文   时间:2020-06-27 13:16:53    阅读次数:52
1128. Number of Equivalent Domino Pairs
问题: 给出数对构成的数组dominoes,若其中一对数对dominoes[i]和另一对数对dominoes[j]包含两个数字相同(忽略顺序),那么称这两对数对等价, 求给定数组dominoes,有多少对(i,j)为等价数对。 Example 1: Input: dominoes = [[1,2], ...
分类:其他好文   时间:2020-06-27 11:49:35    阅读次数:59
Android命令行编译APP
在安卓工程根目录下命令行下编译模块 $ mmm path/module 编译APP也是使用mmm命令 构建一个APP 可以参照development/samples/ApiDemos来进行布局 Android.mk AndroidManifest.xml assets/ README.txt res ...
分类:移动开发   时间:2020-06-27 11:33:55    阅读次数:70
java.lang.RuntimeException: Unable to start activity ComponentInfo{XXX}: Error inflating class android.support.v4.view.ViewPager
事情经过: 今天把一份以前自己打的的App基础模板拿下来的时候,发现页面没有报红,但是错误了 报错信息: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.yijie/com.example. ...
分类:移动开发   时间:2020-06-27 11:33:38    阅读次数:94
17798条   上一页 1 ... 33 34 35 36 37 ... 1780 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!