import java.util.Scanner;public class Test10 { public static void main(String[] args) { // TODO Auto-generated method stub /* * int[] num=new int[4]; ...
分类:
编程语言 时间:
2016-10-22 21:07:52
阅读次数:
218
HTTP 错误 500.23 - Internal Server Error 检测到在集成的托管管道模式下不适用的 ASP.NET 设置。 IIS8.0详细错误 老版本WEB程序用 VS2013打开时报的错误 解决方法,在节点system.webServer中添加 <validation valid ...
分类:
Web程序 时间:
2016-10-22 09:37:17
阅读次数:
248
表达式分析+矩阵+计算器+寄存器=矩阵计算器 怎么想起来搞这个呢.. //刚看龙书兴致勃勃要搞表达式分析 这个寄存器比较简陋,26字母+4缓存,//字母不分大小写 当然,不只能算矩阵,还能算数= = 简陋的命令行如图 尚处于初步阶段,奇怪的功能们尚待加入=ω= 代码 展示一下接口吧= = //mat ...
分类:
其他好文 时间:
2016-10-21 15:58:27
阅读次数:
223
关键字:微信公众平台开发作者:方倍工作室 在这篇微信公众平台开发教程中,我们假定你已经有了PHP语言程序、MySQL数据库、计算机网络通讯、及HTTP/XML/CSS/JS等基础。 我们将使用微信公众账号方倍工作室作为讲解的例子,二维码见底部。 本系列教程将引导你完成如下任务: 第一章 申请服务器资 ...
分类:
微信 时间:
2016-10-21 13:22:06
阅读次数:
436
1. 概述 在引入泛型之前,Java类型分为原始类型、复杂类型,其中复杂类型分为数组和类。引入泛型后,一个复杂类型就可以在细分成更多的类型。 例如原先的类型List,现在在细分成List<Object>, List<String>等更多的类型。 注意,现在List<Object>, List<Str ...
分类:
编程语言 时间:
2016-10-21 11:07:37
阅读次数:
241
1. 使用批量插入最先想到如下的插入语句 insert into a (id,name) values('','') ,('','') 但是 oracle 并不支持这种写法 然后查询得知可以使用如下写法 insert all into a(id,name) values('','') into a( ...
分类:
数据库 时间:
2016-10-21 10:42:29
阅读次数:
722
转自:http://www.jb51.net/article/64806.htm public class AudioRecordDemo { private static final String TAG = "AudioRecord"; static final int SAMPLE_RATE_ ...
分类:
其他好文 时间:
2016-10-19 16:41:44
阅读次数:
648
Scetion 1: The Flowgraph The flowgraph moves data from sources into sinks. Example of data moving with rate changes. The flowgraph must check the boun ...
分类:
其他好文 时间:
2016-10-16 01:36:33
阅读次数:
388
Design a logger system that receive stream of messages along with its timestamps, each message should be printed if and only if it is not printed in t ...
分类:
其他好文 时间:
2016-10-14 07:40:22
阅读次数:
115
Transport Block Size, Throughput and Code rate Since the size of transport block is not fixed, often a question comes to mind as to how transport bloc ...
分类:
Web程序 时间:
2016-10-07 17:47:37
阅读次数:
283