/* * Copyright 2002-2016 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this fi ...
分类:
其他好文 时间:
2017-04-28 10:34:32
阅读次数:
277
Task description Write a function: class Solution { public int solution(int A, int B, int K); } that, given three integers A, B and K, returns the num ...
分类:
其他好文 时间:
2017-04-28 10:25:19
阅读次数:
236
1.两种方式的差异 2.线程的生命周期 3.线程控制(线程的方法) 4.线程同步 5.线程同步锁 一、 两种方式的差异 A extends Thread :简单 不能再继承其他类了(Java单继承)同份资源不共享 B implements Runnable:( 推荐) )多个线程共享一个目标资源,适 ...
分类:
编程语言 时间:
2017-04-28 10:23:05
阅读次数:
232
/*分析: * 所谓的水仙花是指一个三位数,其各位数字的立方和等于该数本身 * 举例:153就是一个水仙华数。 * 153 = 1*1*1 + 5*5*5 + 3*3*3 = 1 + 125 +27 =153 * * A:三位数其实是告诉了我们范围 * B:通过for循环我们就可以实现获取每一个三位 ...
分类:
其他好文 时间:
2017-04-27 10:27:22
阅读次数:
160
流的概念 程序中的输入输出都是以流形式,流中保存的实际上都是字节文件。 字节流与字符流 字节流的操作: 1)输入:inputStream, 2)输出:outPutStream; 字符流的操作: 1)输入主要使用:write类。 2)输出主要使用:reader类。 内容操作就四个类。 操作流程: 使用 ...
分类:
编程语言 时间:
2017-04-27 00:36:24
阅读次数:
325
The MaxDegreeOfParallelism sets the maximum number of simultaneous threads that will be used for the Parallel.For(). It does not mean that only two th ...
分类:
系统相关 时间:
2017-04-26 21:31:42
阅读次数:
233
在Java中,父类的变量可以引用父类的实例,也可以引用子类的实例。请读者先看一段代码: public class Demo { public static void main(String[] args){ Animal obj = new Animal(); obj.cry(); obj = ne ...
分类:
编程语言 时间:
2017-04-26 15:56:13
阅读次数:
224
公众号配置 1.微信支付过程中需要获取用户的openid,所以,仍需填写 网页授权域名 2.微信支付授权目录 Thinkphp目录格式为www.xxx.cn/home/wxpay/ 这里目录不能填写index.PHP,否则保存后域名会被过滤,index.php后面的内容直接处理掉。因此要求我们网站需 ...
分类:
微信 时间:
2017-04-26 14:46:14
阅读次数:
372
1:创建存储过程 此存储过程通过传入的参数(Name),返回一个参数(address)。 create or replace procedure demo_procedure(namedemo in varchar2,addressdemo out varchar2)asbegin select a ...
分类:
编程语言 时间:
2017-04-26 11:50:21
阅读次数:
202
匿名内部类 1.定义: 实现一个接口,或者继承一个父类,并返回new好的实例。 2. 语法: new 类名或者接口名 类的实现体 3.什么情况下使用匿名内部类: 类在创建后马上被使用,且只使用一次 4.注意点: ·匿名内部类不能有构造方法 ·匿名内部类不能定义任何静态成员、静态方法。 ·匿名内部类不 ...
分类:
编程语言 时间:
2017-04-26 01:42:25
阅读次数:
151