成员变量buf是存储数据的缓冲区 count是缓冲区中的有效字节数。 /** * The
buffer where data is stored. */ protected byte buf[]; /** * The number of valid
byte...
分类:
编程语言 时间:
2014-06-11 11:03:44
阅读次数:
269
1、OraclePackage的作用:可以简化应用设计、提高应用性能、实现信息隐藏、子程序重载2、ORACLE中的function
、package、package
bodies、procedure的区别和相同:function有返回值,有参数;procedure无返回值,有参数;package、p...
分类:
其他好文 时间:
2014-06-11 10:52:36
阅读次数:
209
设计报表
通过“TfrxReport.DesignReport”方法调用报表设计器。你必须在你的项目中包含报表设计器(必要条件是:要么使用“TfrxDesigner”组件,要么增加“frxDesgn”单元到uses列表)
DesigReport 方法接受两个默认参数: procedure Desig...
分类:
其他好文 时间:
2014-06-11 09:09:01
阅读次数:
174
又2b了一次…… 1 var s:ansistring; 2
ans,pre:array[0..10000] of longint; 3 i,k,tot:longint; 4 procedure main; 5 begin
6 pre[1]:=0;k:=0; 7 for i:=...
分类:
其他好文 时间:
2014-06-11 08:42:01
阅读次数:
211
Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two...
分类:
其他好文 时间:
2014-06-11 00:35:15
阅读次数:
243
ALTER PROCEDURE [dbo].[usp_visit_detail](@siteid
BIGINT,@Startime VARCHAR(15),@Endtime VARCHAR(15),@Aflag INT = 10,
--初始值为10,非10,则表示有...
分类:
数据库 时间:
2014-06-10 10:05:23
阅读次数:
292
题目
Given a non-negative number represented as an array of digits, plus one to the number.
The digits are stored such that the most significant digit is at the head of the list.
方法
...
分类:
其他好文 时间:
2014-06-10 06:12:06
阅读次数:
285
精确查询: CREATE PROCEDURE FindCosInfo( @CosID
varchar (10), //课程编号 @CosName varchar (20), //课程名称 @CosCredit int
//课程学分)ASdeclare @sql varchar (1000)begi....
分类:
其他好文 时间:
2014-06-08 20:14:45
阅读次数:
205
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:
其他好文 时间:
2014-06-08 15:30:28
阅读次数:
227
Given a non-negative number represented as an
array of digits, plus one to the number.The digits are stored such that the most
significant digit is at...
分类:
其他好文 时间:
2014-06-07 16:56:28
阅读次数:
188