码迷,mamicode.com
首页 > 其他好文
内部类
1、非静态内部类: a、四种访问权限:public protected default private(与成员变量相同) b、如果外部内属性、内部类属性与内部里方法的局部变量同名,则可以使用this、外部类类名.this做为限定来区分。 c、非静态内部类成员可以访问外部类的private成员,但是....
分类:其他好文   时间:2015-04-21 17:57:17    阅读次数:124
Pow(x, n)
https://leetcode.com/problems/powx-n/Implement pow(x,n).解题思路:这种math的题目本来就不擅长,看到题目tag里有binary search,很是疑问,不知道怎么解。直接写网友的思路吧,其实就是递归。对幂数n折半递归,递归结束的条件为n达到0...
分类:其他好文   时间:2015-04-21 17:58:31    阅读次数:116
DX使用texconv工具批处理dds格式图片
texconv D:\png\*.* -o E:\dds -m 5 -f dxt3 -ft dds上述命令的意思是把D:\png目录下的全部文件(当然可以指定特定格式例如*.png)转换成dds格式,存储到E:dds目录(注意此目录一定要存在)-m表示mip级数,-f表示dds内部格式,一般常用的有...
分类:其他好文   时间:2015-04-21 17:56:20    阅读次数:150
jmete 取配置文件的行数(二)
接上一篇未解决的问题,继续...beanshell前置处理器貌似因为作用域的问题解决不了,那这个问题怎么解决呢?jmeter函数,可以自定义函数调用吗?答案是肯定的,下面附上代码:其中FileRowColContainer为jmeter内部的类,刚好有文件行数的方法直接拿过来用,博友们也可以像上一篇...
分类:其他好文   时间:2015-04-21 17:57:49    阅读次数:138
EAS table 刷新
1 EntityViewInfo viewInfo = super.getDialog().getEntityViewInfoResult();//获取queryDialog对应的视图信息 2 FilterInfo filter=null; 3 if(viewInfo==nul...
分类:其他好文   时间:2015-04-21 17:56:55    阅读次数:134
[唐诗]咏蝉-骆宾王
西陆蝉声唱,南冠客思深。不堪玄鬓影,来对白头吟。露重飞难进,风多响易沉。无人信高洁,谁为表予心?
分类:其他好文   时间:2015-04-21 17:55:55    阅读次数:98
【回溯】装载问题
1 #include "stdio.h" 2 #include "stdlib.h" 3 int c1,c2,n; 4 int w[1000],s[1000],bs[1000]; 5 int mw=0; 6 void max(int c,int i,int cw) 7 { 8 if(i==...
分类:其他好文   时间:2015-04-21 17:56:06    阅读次数:117
典型用户分析
1、典型用户(1)名字:小红(2)年龄:21岁(3)收入:收入来自父母(4)代表的用户在市场上的比例和重要性:在学校中比例较大(5)使用这个软件的典型场景:在校园内找不到路了(6)使用本软件/服务的环境:校园内(7)生活/工作情况:目前正在准备考研(8)知识层次和能力:在读本科生(9)用户的动机、目...
分类:其他好文   时间:2015-04-21 17:54:27    阅读次数:116
ORA-31626:作业不存在 ORA-31633:无法创建主表"XXX.SYS_IMPORT_FULL_05"
错误代码:ORA-31626:作业不存在ORA-31633:无法创建主表"XXX.SYS_IMPORT_FULL_05"ORA-06512:在"SYS.DBMS_SYS_ERROR",line 95ORA-06512:在"SYS.KUPU$FT",line 1020ORA-01031:权限不足环境:...
分类:其他好文   时间:2015-04-21 17:54:06    阅读次数:17106
ARM汇编指令
ARM汇编指令ARM处理器的指令集可以分为跳转指令、数据处理指令、程序状态寄存器(PSR)处理指令、加载/存储指令、协处理器指令和异常产生指令6大指令。一、跳转指令跳转指令用于实现程序流程的跳转,在ARM程序中有以下两种方法可以实现程序流程的跳转。Ⅰ.使用专门的跳转指令;Ⅱ.直接向程序计数器PC写入...
分类:其他好文   时间:2015-04-21 17:55:24    阅读次数:255
【leetcode】Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the total number...
分类:其他好文   时间:2015-04-21 17:55:03    阅读次数:104
修改queryDialog的查询编辑条件
1.重写initCommonQueryDialog1 @Override2 protected CommonQueryDialog initCommonQueryDialog() {3 CommonQueryDialog queryDlg = super.initCo...
分类:其他好文   时间:2015-04-21 17:55:31    阅读次数:137
40-Combination Sum II
【问题】Given a collection of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Each num...
分类:其他好文   时间:2015-04-21 17:54:48    阅读次数:88
在代码里更新autolayout布局
1 //遍历view约束(高,宽) 2 NSArray* constrains = self.View.constraints; 3 for (NSLayoutConstraint* constraint in constra...
分类:其他好文   时间:2015-04-21 17:54:20    阅读次数:130
OC学习笔记 字符串常用函数
格式化字符串就是按一定格式输出的字符串 或者 将某种格式的字符串转化为另外一种格式。目的就是让程序可读性增强创建字符串1 NSstring * str1 = @"hello";2 NSString * str = [[NSString alloc]initWithString:@"h...
分类:其他好文   时间:2015-04-21 17:52:16    阅读次数:123
Material master screens and fields
Weblinks :::http://scn.sap.com/docs/DOC-52909 http://help.sap.com/saphelp_45b/helpdata/en/64/1a39516e36d1118b3f0060b03ca329/content.htm
分类:其他好文   时间:2015-04-21 17:52:51    阅读次数:153
hadoop 调优
Hadoop调优mapred.tasktracker.map.tasks.maximum官方解释:The maximum number of map tasks that will be runsimultaneously by a task tracker.我的理解:一个tasktracker最多...
分类:其他好文   时间:2015-04-21 17:50:58    阅读次数:122
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!