手机版网站导航白领街,做最美丽的自己!

白领街

手机版

declarations-declarations

2022-12-18 10:24:33 出处:白领街
导读:Declarations是什么意思声明(declaration的复数);宣言;(纳税品在海关的)申报;【法】(原告的)申诉宣告;宣告类;宣布N-COUNT A decla

Declarations是什么意思

声明(declaration的复数);宣言;(纳税品在海关的)申报;【法】(原告的)申诉
宣告;宣告类;宣布

N-COUNT A declaration is an official announcement or statement. 官方声明
例:
The opening speeches sounded more like declarations of war than offerings of peace.
那些开幕辞听起来更像宣战书而不是和平倡议。
N-COUNT A declaration is a firm, emphatic statement which shows that you have no doubts about what you are saying. 宣言
例:
...declarations of undying love.
…永恒爱情的宣言。
N-COUNT A declaration is a written statement about something which you have signed and which can be used as evidence in a court of law. 书面声明
例:
On the customs declaration, the sender labelled the freight as agricultural machinery.
在报关单上,发货方将货物列为农业机械。
短语
customs declaration报关单;申报关税
declaration of independence独立宣言
declaration formn. 申报单


-Wno-deprecated-declarations编译选项什么意思?

这个编译选项是用来关闭Xcode中关于废弃API的警告
比如 你代码中使用了某个已经被废弃的API 这是Xcode会出现一个警告
这时你就可以通过这个编译选项 关闭掉这个警告。


protocol 最后板块declarations of interest是什么意思

declarations of interest
利益申报


Which two are valid declarations within an interface definition?是什么意思!

二是哪些在界面限定之内的合法的声明?


投稿时什么是declarations section

朋友你好,根据我多年从事文字工作的经验,我认为:如果投稿更有针对性,命中率会更高一些。这就关系到,你是哪里的?干什么的?写的稿件是什么体裁?什么内容?如果说投稿的话,最好投当地的报刊、网络或者是你从事的职业报刊发表,要投哪个媒体首先要研究哪个媒体,看它需要什么内容、什么体裁、什么格式的稿件,“对症下药”,这样会更轻松一些、方便一些,命中率会更高一些。如果你能够告诉我你的具体情况(干什么工作,哪里的,写的小说的大致内容等),我可以给你一些建议。我1993年开始在部队时开始发表各类文章,包括:报告文学、新闻、诗歌、散文、小说、评论等体裁的,到目前,先后在《人民日报》《法制日报》《农民日报》《中国文化报》《法制文萃》《半月谈》《解放军报》《中国国防报》《中国绿色时报》《中国日报》《中国教育报》《人民公安报》《中国交通报》《中国安全生产报》《中国转业军官》《中国人事》《道路交通管理》等报刊发表的大约5000篇左右吧,有40多篇获奖。另外:投稿时,第一要有信心,第二要投对报刊媒体,这两点非常重要。祝你成功!


Java考试都考什么内容

Section 1 Declarations and Access Control
目标1, 创建数组
采用不同的格式来编写任一基本数据类型数组的声明,构造及初始化的代码。

数组是一连串对象或基本数据,它们必须同型,并以一个标识符封装在一起。数组好象一个对象,通过new关键字来创建。
声明数组
数组的声明并不能为数组分配内存。声明时数组不能有大小信息,也就是说编译器并不允许你告诉它究竟数组有多大,它只是一个reference(引用),并没有对应的空间。声明数组的方式有: int[] a1; int a1[]两种,int num[5]是错误的数组声明方式。

声明并创建数组
声明一个数组并同时为它分配内存。
Int num[] =new int[5];

声明并初始化数组
声明一个数组并同时进行初始化。
Int num[]=new int[]{0,1,2,3,4};
Int num[]=new int[5]{0,1,2,3,4}; //!错误

数组知道自己的大小
与c++不同,数组知道自己的大小,当数组越界时,会抛出ArrayIndexOutOfBoundsException异常。数组具有length属性(不是length()方法),它能告诉你数组的大小。

多维数据
int m[][] ; int [] m[]; int[][] m;

数组的缺省值
与其它的变量不同,不论数组在向处创建,它总是使用可以使用缺省值。

目标2 声明类与变量
声明类,内部类,方法,实例变量,静态变量,自动变量(局部变量),正确使用各种修饰符(public , private , static ,final, abstract)。

在JAVA中万事万物皆对象,即使JAVA程序本身也是对象。
类的定义和对象的生成
public class MyClass{ //类定义
int i;
float f; //类数据成员
void amethod(){ //方法
int i; // 局部变量
}
}

MyClass aClass =new MyClass(); //创建类的一个实例(对象)

修饰符说明
private
被了变量所在的类,其它任何类都不可以访问这个成员。

无访问修饰符
所谓的包访问权限,同一个包内的其它类可以访问这个成员。

Protected
与无访问修饰符具有权限外,还允许子类访问这个成员。

Public
具有全局可视性,任何其它类都可以访问这个成员。

Static
Static变量称为类变量,类的所有对象共享这个变量。
Static方法称为类方法,它只能访问static变量。静态方法不能被子类overriding为非静态方法,但静态方法可以被子类静态方法所Hided.

Native
只用于方法,指明方法体是由其它编程语言编写的。它以;结尾不是以{}结尾。
Public native void fastcalc();

Abstract
Abstract修饰符可用于类与方法前,在用于方法前时表明方法不具备方法体。只支类中包括了抽象方法则它必须声明为抽象类。如果一个类实现一个接口时,它没有为接口中所有的方法提供实现时,也必须声明为抽象类。

Final
Final修饰符可用于类,方法和变量,fianl类不能被继承,所有final类中的方法都是教学final方法。Final变量的值必须在创建时设定并具不能被修改。

Synchronized
防止多个线程同时访问相同的代码段。

Transient
表明类序列化时,变量不必序列化。

Volatile
表明变量由于线程可能异步修改。

目标3 缺省构造器
结定一个类,确定是否有缺省构造器

构造器是与类名相同的方法,并具没有返回值。缺省构造器是一个不具有任何参数的构造器。在你没有提供构造器的条件下,编译器为自动化为你提供一个缺省的构造器,但一旦你定义了任何一个构造器,编译器就不会为你提供缺省构造器。在这种条件下,如果你使用不具有参数的构造器将有错误。
构造器可以有访问修饰符,但不能有native,abstract,static,synchronized和final修饰符。

目标4 重载与覆写
为所有在自己或父类中的相关方法声明有效的返回值,
相同类中的方法
当在同一个类中有多个方法具有相同的名称时,这个方法就被重载了。只有参数的次序和类型是区分重载方法的依据,而返回值和参数的名称对区分重载方法没有贡献,所以,不能以返回值的不同来重载方法。

子类中的方法
可以在子类中重载父类的方法,只要新的重载方法具有不同的参数次序或类型。当你在子类中的方法具有于父类中的方法相同的signature,则称子类覆写了父类的方法。注意:子类覆写父类方法,它的访问修饰符可以不同,但子类要具有比父类更加严格的访问权限。
静态方法不能被覆写只能被HIDED。

基本类型为参数的重载
基本类型可以自动进行窄化转型(narrowing conversion),在没有相应数据类型的重载方法,它的数据类型向上晋升。


Section 2 Flow control and exception Handling

目标1 if 和switch语句
使用if和switch编写代码并能区分有效的参数类型

if的条件语句中只能是boolean型的数据。
Int k=1;
If(k ) System.out.println(k); // 错误
If(k==1) System.out.println(k); // 正确

Switch的条件语句中只能是int数据类型,或int的窄化数据类型也就是byte, char, short
Long i;
Switch(i){ //错误
Case 1: .. break;
Case 2: … break;
Default: ..
}
case语句的break的使用,在switch块中只有遇到break语句时,块才跳出。
Default语句不必总安排在switch语句的最后,但default语句不在最后时,要使用break.

三元操作符 ?:



目标2 循环,break和continue
编写各种(不)具有label的break和continue的循环语句。明确循环开始与结束时,循环记数器的值。

For 循环
语法:
for(initialization; conditional expression;increment)

逗号运算符
它只能用于for的控制表达式中。
for(int i=1,j=i+10;i<5;i++,j=i*2)
do-while与while的区别在开do-while中的语句至少执行一次。

Goto与break,continue
虽然goto是java的保留字,但java而不使用它。Java中的跳跃功能由break与continue提供。在java中,惟一一个放置lable而能够产生效益的地点就是恰恰放在迭代语句前。一般而论,break与continue只会中断当前的循环,而与label搭配,可以中断多层循环。
Label1:
Outeriteration{
Inneriteration{

break; //1

continue; //2
….
Continue label1;//3
….
Break label1; //4
}
}
1中断内层迭代,回到外层迭代
2将执行点移至内层迭代的起始处
3同时中断内层迭代,再从外层迭代开始
4同时中断内外层迭代,不再进行任何迭代
务必记下。在java中使用label的惟一理由是跳过一个以上的嵌套层次。
目标3 try/catch语句与方法覆写
正确使用异常与异常处理语句(try,catch,finally)来编写代码,正确处理覆写方法的异常。

异常一词,意指“我对这件事有异议:我对这件事感到意外”。在问题发生点,你可能自己处理异常,有时,你可能不知道如向处理,就是说在当前的context并不具备中以修改问题的信息,你可将问题交付给高层的context的处理。

覆写有异常抛出的方法
覆写具的异常抛出的方法时,子类的方法只能抛出父类方法所抛出的异常或它的子异常。但是,子类方法可以抛出少于父类的异常或干脆就不抛异常。
方法声明的Throws子句
抛出子句意指当错误发生时,方法抛出这个异常而这个方法的调用者必须处理(catch)这个异常异常。
目标4 如时异常发生
认识代码段中异常发生的地方以它的影响。注意:异常可能是运行时异常,检测异常或错误。

错误无需捕捉
异常的出处:
Java标准库类抛出的异常
自己的类抛出的异常
执行期发生的任何意外
检测异常与非检测异常
检测异常你必须捕捉,而非检测异常你不必捕捉。
非检测异常发生后,缺省条件下会在控制台上打印一条消息。对某些非检测异常可用编码来避免。
public class GetArg{
public static void main(String argv[]){
if(argv.length ==0){
System.out.println("Usage: GetArg param");
}else{
System.out.println(argv[0]);
}
}
}
检测异常必须被捕捉,方法在调用某个抛出检测异常的的方法时,它或者捕捉它或抛出它。
public FileInputStream openFile(String filename)
throws FileNotFoundException{//抛出异常,自己不处理
FileInputStream fis = new FileInputStream(filename);
return fis;
}

public FileInputStream openFile(String filename) {
FileInputStream fis;
try{
fs= new FileInputStream(filename);
}catch(FileNotFoundException ex){
ex.printStackTrace();
}
return fis;
}

finally子句
finally子句总是会执行,即使try/catch中已有了return语句finally中的语句也会执行。但如果try/catch中有System.exit(0),finally语句不会执行。

Catch子句
Catch子句的捕捉异常的次序要与异常的层次结构相一致。也就是说子异常要先捕捉,父异常后捕捉。反之,编译器会抛出子异常已捕捉的信息。其它要注意是:异常被抛出后,异常处理根据捕捉的排列次序,寻找最近的处理程序。
目标5 使用断言
正确编写断言代码
assertion功能提供了一种在代码中进行正确性检查的机制,这种检查通常用于开发和调试阶段,到了软件完成部署后就可以关闭。这使得程序员可以在代码中加入调试检查语句,同时又可以在软件部署后关闭该功能而避免对软件速度和内存消耗的影响。基本上,assertion功能就是JAVA中的一种新的错误检查机制,只不过这项功能可以根据需要关闭。

断言的语法
assert somebooleatest

assert somebooleantest : someinformatinvemethod

断言的使用
断言的使用就好比注释的使用,注释向其它人表明其阅读的代码是正确的,而断言用于保证在程序执行过程中booleanTest的值一定是真。断言用于确保某些东西总是为真的。缺省条件下,断言功能是关闭的。
编译开启断言功能。
javac -source1.4 Myprog.java
运行开启断言功能
enableassertions的参数:
no arguments
Enables or disables assertions in all classes except system classes.
packageName...
Enables or disables assertions in the named package and any subpackages.
...
Enables or disables assertions in the unnamed package in the current working directory.
className
Enables or disables assertions in the named class
例如:
java –enableassertions:my.package… MyProg
java –ea Myprog

What should you assert to be true?
断言用于你认为某此东西必须是真的地方。例如:人的年龄必然大于0,又如你认为在一套if/else判定后,必然有判定成功的分支,就可在if/else后,插入断言。例如:
switch(lang){
case Language.java:
System.out.println("java");
break;
case Language.pascal:
System.out.println("pascal");
break;
case Language.csharp:
System.out.println("csharp");
break;
default:
assert false : lang;
}

断言使用的地方

应该使用的情形 不应该使用的情形
用于保证内部数据结构的正确 不用于保证命令行参数的正确
用于保证私有(private)方法参数的正确 不用于保证公共(public)方法参数的正确
用于检查任何方法结束时状态的正确 不用于检查外界对公共方法的使用是否正确
用于检查决不应该出现的状态 不用于保证应该由用户提供的信息的正确性
用于检查决不应该出现的状态,即使你肯定它不会发生 不要用于代替if语句
用于在任何方法的开始检查相关的初始状态 不要用做外部控制条件
用于检查一个长循环执行过程中的的某些状态 不要用于检查编译器、操作系统、硬件的正确性,除非在调试过程中你有充分的理由相信它们有错误
在不开启断言功能时的输出:
在开启断言功能时的输出:

Section 3 Garbage Collection
Objective 1,2 & 3
State the behaviour that is guaranteed by the garbage collection systemWrite code that explicitly makes objects eligible for garbage collection. Recognize the point in a piece of source code at which an object becomes eligible for garbage collection.

为什么要进行垃圾收集
当内存中的对象不再被利用时,系统就要回收内存。Java中不用担心垃圾收集,系统的垃圾收集器会自动回收没有引用的对象所占用的内存。注意:你能建议或鼓励 JVM进行垃圾收集但你不能强迫它。

确保的行为:finalization
Java确保在对象被收集调用finalize方法。垃圾回收器用于释放“对象内存”,由于java中所有的东西都是对象,所以finalize不用来回收释放内存。Finalize方法的使用时机是代码采用了native方法,它调用了非java的内存分配方式,所以你得在finalize方法中以native的方式释放内存。

对象被回收的时机
当垃圾收集机制认为对象上没有引用时,它调用垃圾收集器来回收对象。当垃圾收集是非确定性的,你不能预测它发生的时间,你也不能预测finalize方法准确的运行时间。

Note: Once a variable is no longer referenced by anything it is available for garbage collection.
You can suggest garbage collection with System.gc(), but this does not guarantee when it will happen

非可达
当对象非可达时,就是可能进行回收。非可达的原因为:对象明确被设置为null或指向它的引用数为0。

Section 4 Language Fundamentals
Objective 1, Packages, import, inner classes, interfaces
Identify correctly constructed package declarations, import statements, class declarations (of all forms including inner classes) interface declarations, method declarations (including the main method that is used to start execution of a class), variable declarations, and identifiers.

目标1 包,导入,内类与接口
正确的识别包声明,导入声明,类声明(包括内类),接口声明,方法声明(包括main方法),变量声明和修饰器。

包语句
包用于解决名字冲突,一般开发者以自己的internet域名的反序作为包名的第一部分。这样你就可以生成独一无二的包,这样包中的类就不会有名称上的冲突。例如:package cn.edu.xjtu.scjp 这样就可以产生独一无二的类名:cn.edu.xjtu.scjp.Question
注意: 包声明语句必须位于其它语句之前,除了注释语句

导入语句
导入语句位于包语句之后,其它语句之前。导入语句是为了方便代码编写,导入相应的包后,包中的类可以仅以局部名使用,而不以全限定名来使用。
Import cn.edu.xjtu.scjp.*;
Question q=new Question();

cn.edu.xjtu.scjp.Question q=new cn.edu.xjtu.scjp.Question();
导入语句对性能的没有影响,它就好比DOS环境中设置路径。
注意:If a source file has a package statement, it must come before any other statement apart from comments

类与内类的声明
类声明
一个文件只能包含一个public类,但可以包含多个非public类。这些类在编译后将生成各自独立的.class文件。
内类,即定义在其它类之中的类。

接口定义
接口是纯粹的abstract class.它所定义的方法不包含方法主体。接口也可定义数据成员,但这些数据成员自然而然的成为了static和final. 接口中的方法即使没有声明为public,它们也会是public,所以实现接口时,必须将实现的方法定义为public。
例子:
interface Instrument{
int i=5;// static & final
void play(); // automatically public

}
class Wind implments Instrument{
public void play(){} //必须定义为public

}

main方法
main方法是程序运行的起点,方法的signature
public static void main(String argv[])
public:方法全局可见性 static:类方法 void: 无返回值 String[]:参数为字符串数组
main不是java的关键字,可以用它来定义变量。Main方法的参数是由命令行来提供的。
State the correspondence between index values in the argument array passed to a main method and command line arguments.
Java Aclass arg0 arg1 …

变量声明
变量的名称:它必须是一个合法的标识符。标识符以字母开头的Unicode字符串;不是关键字,布尔直接值(true,false)或保留字(null);它在作用范围内必须是唯一的。
合法的变量: _avariable, avariable$, (注:_,$可用于变量名)
数据类型:boolean-8/1 byte-8 -128~127
short-16 -32768~32767 int-32 long-64
float-32 double-65 char-16 0~65536

数据类型转型(casting operators)
在java中只有进行窄化转换(narrowing conversion)时才有风险,宽化转化(widening conversion )时就无需明确指示。
数据运算中的晋升(promotion)
在比int小的基本数据类型上进行任何数学运算或位运算时,运算之前会先晋升为int,其结果也会是int类型。如果你要将结果指给较小的类型时,要进行转型。

目标2 使用接口,
明确实现接口类,接口是Runnable或其它的用户自定义的接口

Interfaces -Programming by contract
接口是在类之间建立了一个协议(protocol),或者说合同编程。 意味一个开发者开发了接口其它开发者要守它的条件。接口的别一个用处是实现多重继承。Java中类只能继承一个非接口类,其余继承的来源得是接口。正确的写法是:
DeriveClass extends BaseClass implements interface1,interface2{}
接口合并时的名称冲突

Objective 3, Passing values from the command line
State the correspondence between index values in the argument array passed to a main method and command line arguments
运行一个例子就明白:
public class MyParm{
public static void main(String argv[]){
String s1 = argv[1];
System.out.println(s1);
}
}
java MyParm hello there
程序将输出there不是MyParm也不是hello
Objective 4, identify keywords


abstract boolean break byte case catch
char class const * continue default do
double else extends final finally float
for goto * if implements import instanceof
int interface long native new package
private protected public return short static
strictfp super switch synchronized this throw
throws transient try void volatile while

Objective 5, Unassigned variables
State the effect of using a variable or array element of any kind when no explicit assignment has been made to it.
Java保证变量绝对会在被使用前初始化。每个基本类型的数据成员都保证有初值(O)。而引用数据类型的数据成员的初值为null.
The default values for numeric types is zero, a boolean is false and an object reference is the only type that defaults to a null.
局部变量(在方法中定义的变量)不能缺省值,故使用前必须明确赋予初值。
数组总是可以设置缺省值的。Before initialization arrays are always set to contain default values wherever they are created.
Objective 6, The range and format of data types

Section 5 Operators and Assignments
Objective 1, Applying operators
Determine the result of applying any operator including assignment operators and instanceof to operands of any type class scope or accessibility or any combination of these.

目标1 使用运算符
操作符的分类
算术操作符 (+ , - , * , / , %,++,--)
一元操作符 (++, --, - , +)
关系和条件操作符 关系操作符(>,>=,<,<=,==,!=) 条件操作符(&&,||,!,&,|,^)
移位操作符(>,>>>) 位操作符(&,|,^,~)
赋值操作符(=)
其它操作符(?:,[],.,new,instanceof,(类型))
注:除了=,==,!=运算符外,其它运算符只能用于基本类型。String类支持+,+=操作符
例: String aStr=2+”hello”;
instanceof操作符用来检验某特殊对象是不是某类或该类的子类的实例,还可以检验某对象的类或子类是否实现了某接口。注意,数组也是对象,instanceof同样适合与数组。

赋值操作符=
基本数据类型的赋值操作
boolean数据只能赋值于另一个boolean数据。不同于c和c++,java中的boolean值只能是true和false。
其它的数据类型可以自由的进行widening conversion(宽化转换)。而进行narrowing conversion(窄化转换)由于有精度的损失,必须进行强制转换。
Primitives may be assigned to "wider" data types, a boolean can only be assigned to another boolean
引用数据类型的赋值操作
引用数据类型的赋值,例如a=b,使得a和b引用指向相同的对象。引用数据类型的赋值可以向上转型。即一超类的引用可以被赋值一子类对象。但向下转型必须强制转换。
Object references can be assigned up the hierarchy from child to base.
++,--: 前序递增和前序递减(++a,--a)先进行运算然后才增赋值。后序递增和后序递减(a++,a--)先赋值然后才进行运算。
奇怪的++与--:
int a=1,b=5;
b+=b++-a--; (b=9)
b=b++;(b=9)
b=++b; (b=10)

关系操作符
关系操作符(,=,==,!=)所产生的结果是boolean,==,!=可用于所有的内置的类型,其它运算符不能用于boolean.
奇怪的==(对于引用类型==比较两个对象的内存地址,这可不是我们想要的)
double d=12.0;
int i=12;
Integer i2=new Interger(12);
Double d2=new Double(12);
Integer i3=new Interger(12);
d==i ; true
i2==i3; false
i2.equals(i3); true
i2.equals(d2) ; false

逻辑操作符
逻辑运算符:&&,||,!只能用boolean值身上。位运算符:&,|,^,~:在两个操作数的相应位上进行逻辑代数运算。boolean数据不能~b而用!b。&和|和^即是逻辑的(逻辑与,逻辑或和逻辑非)也是位操作的运算符(按位与,按位或和按位异或)。
奇怪的&&与||(短路的&&和||)
当第一个操作数为flase时,如果用&&运算符时,则不检查第二个操作数就直接返回flase。
当第一个操作数为true时,如果用||运算符时,则不检查第二个操作数就直接返回true。

移位操作符
无符号右移位操作符>>>,它采用零扩展,高位插入0. 左移位运算符> 则将运算符左边的运算对象向右移动运算符右侧指定的位数,有符号右移位运算符使用了符号扩展。若值为正则在高位插入0,若值为负则在高位插入1。
注:int或>>32的结果为3。Long数据类型在先要进行mode 64运算。
奇怪的>>>:小的负数进行>>>运算将得到一个大的正数
-1>>>1 : 2147483647
A unsigned right shift >>> by a positive amount of a small negative number will result in a large positive number returned.

操作数的优先级
优先级(胃溃疡患者是c程序员的写照 Ulcer Addicats Really Like C A lot)
U: ->Unary 一元运算符 ++, -- ,-,+,!,~
A: -> Arithmetic(shift) *,/,%,+,-,>>,>>>,<<
R: -> Relation >,=,<=,instanceof,==,!=
L: -> Logic(bitwise) &,^,|,&&,||
C: -> 三元运算符
A:-> 赋值 = *=

Objective 2, the equals method
Determine the result of a


我已经导入了junit包,为什么写@Test 会报错?

把JUNit 改成3保存下,然后再改成4版本保存,亲测可行,求给精选


java编程规范!!!

Java语言编程规范
Version
Revision History
Date|Version|Description|Author|
2003-3-11||Java 编程规范|万军民|

目录
第一章文件的命名41.1Web文件的命名规范41.2Java文件的命名规范4第二章文件组织52.1文件注释52.2package语句52.3import语句62.4class与interface62.4.1变量定义62.4.2 instance变量72.4.3常量72.4.4方法(method)7第三章缩进与分行10第四章注释114.1块注释114.2单行注释114.3行尾注释124.4文档注释12第五章声明与定义135.1变量的定义135.2 class与interface的定义13第六章语句156.1 if, if-else, if else-if else语句156.2 for语句166.3 while语句166.4 do-while语句166.5 switch语句176.6 try-catch语句17第七章空行与空白197.1空行197.2空格19第八章参考21第九章编码范例22文件名称:jsp、html、images文件名一律小写,Html的文件扩展名为“htm”。文件名均采用“_”进行分割,第一个单词表示模块名称或简称,以后的单词为页面功能描述,(如果一个单词无法描述可以采用多个单词,但必须用分割符进行分割),最后的一个单词如果是功能实现结果页则为“result”,如果是功能实现页,则无。
例如:psms_add_account_result.jsp
表示是添加账户功能管理模块,添加账户的实现结果页。
psms_add_account.jsp
表示是添加账户功能管理模块,添加账户的功能页。
为保证公司全球范围内的命名唯一性,建议采用如下的命


delphi 如何写入Excel

在开发数据库应用程序中,经常要将类型相同的数据导出来,放到Excel文件中,利用Excel强大的编辑功能,对数据作进一步的加工处理。这有许多的方法,我们可以使用OLE技术,在Delphi中创建一个自动化对象,通过该对象来传送数据。也可以使用ADO,通过与Excel数据存储建立连接,使用ADO这种独立于数据库后端的技术来导出数据集的数据。
可这两种技术都有一个共同的缺点,那就是慢,数据量少还好,用户不会有太多的感觉,可一旦数据量大,比如,超过1千条,速度就让人难以忍受了,那么有没有更好的办法,既可以快速地导出数据,又不用安装附加的软件。也许好多人都想到了剪贴板的方式,这种方式速度是快,可也有不好的一面,那就是数据量大占用内存也大,并且在Excel中调用PASTE方法时,需要锁定输入,这使用起来,就有点不方便了
这里我为大家介始一种比较好的方法,使用文件流的方式,通过TfileStream直接写入Excel文件。我写了一个函数,通过它可将数据集中的数据直接导入到Excel文件中。测试了一下,1M的数据,不到十秒就完成了。附源程序。
unit Unit1;


interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs,DB, ADODB, Grids, DBGrids, StdCtrls;

type
TForm1 = class(TForm)
DBGrid1: TDBGrid;
ADOTable1: TADOTable;
DataSource1: TDataSource;
ADOConnection1: TADOConnection;
ADOTable1record_id: TIntegerField;
ADOTable1action_id: TIntegerField;
ADOTable1action_name: TStringField;
ADOTable1net_name: TStringField;
ADOTable1deal_no: TStringField;
ADOTable1name: TStringField;
ADOTable1getno_date: TDateTimeField;
ADOTable1window_no: TIntegerField;
ADOTable1staff_id: TStringField;
ADOTable1staff_name: TStringField;
ADOTable1deal_date: TDateTimeField;
ADOTable1deal_type: TStringField;
ADOTable1finish_date: TDateTimeField;
ADOTable1state: TStringField;
ADOTable1appraise: TStringField;
ADOTable1appraised_flag: TBooleanField;
ADOTable1cancel_led_time: TDateTimeField;
ADOTable1wait_time: TBCDField;
ADOTable1wait_time2: TStringField;
ADOTable1accept_time: TBCDField;
ADOTable1accept_time2: TStringField;
ADOTable1getnumber_addr: TIntegerField;
ADOTable1cust_level: TIntegerField;
ADOTable1cust_level_name: TStringField;
ADOTable1cust_level_name_remark: TStringField;
ADOTable1operation_sum: TIntegerField;
Button1: TButton;
SaveDialog1: TSaveDialog;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
arXlsBegin: array[0..5] of Word = ($809, 8, 0, $10, 0, 0);
arXlsEnd: array[0..1] of Word = ($0A, 00);

arXlsString: array[0..5] of Word = ($204, 0, 0, 0, 0, 0);
arXlsNumber: array[0..4] of Word = ($203, 14, 0, 0, 0);

arXlsInteger: array[0..4] of Word = ($27E, 10, 0, 0, 0);

arXlsBlank: array[0..4] of Word = ($201, 6, 0, 0, $17);
implementation

{$R *.dfm}

Procedure ExportExcelFile(FileName: string; bWriteTitle: Boolean; aDataSet: TDataSet);
var
i, j: integer;
Col, row: word;
ABookMark: TBookMark;
aFileStream: TFileStream;
procedure incColRow; //增加行列号
begin
if Col = ADataSet.FieldCount - 1 then
begin
Inc(Row);
Col :=0;
end
else
Inc(Col);
end;
procedure WriteStringCell(AValue: string);//写字符串数据
var
L: Word;
begin
L := Length(AValue);
arXlsString[1] := 8 + L;
arXlsString[2] := Row;
arXlsString[3] := Col;
arXlsString[5] := L;
aFileStream.WriteBuffer(arXlsString, SizeOf(arXlsString));
aFileStream.WriteBuffer(Pointer(AValue)^, L);
IncColRow;
end;
procedure WriteIntegerCell(AValue: integer);//写整数
var
V: Integer;
begin
arXlsInteger[2] := Row;
arXlsInteger[3] := Col;
aFileStream.WriteBuffer(arXlsInteger, SizeOf(arXlsInteger));
V := (AValue shl 2) or 2;
aFileStream.WriteBuffer(V, 4);
IncColRow;
end;
procedure WriteFloatCell(AValue: double);//写浮点数
begin
arXlsNumber[2] := Row;
arXlsNumber[3] := Col;
aFileStream.WriteBuffer(arXlsNumber, SizeOf(arXlsNumber));
aFileStream.WriteBuffer(AValue, 8);
IncColRow;
end;
begin
if FileExists(FileName) then
DeleteFile(FileName); //文件存在,先删除
aFileStream := TFileStream.Create(FileName, fmCreate);
Try
//写文件头
aFileStream.WriteBuffer(arXlsBegin, SizeOf(arXlsBegin));
//写列头
Col := 0; Row := 0;
if bWriteTitle then
begin
for i := 0 to aDataSet.FieldCount - 1 do
WriteStringCell(aDataSet.Fields[i].FieldName);
end;
//写数据集中的数据
aDataSet.DisableControls;
ABookMark := aDataSet.GetBookmark;
aDataSet.First;
while not aDataSet.Eof do
begin
for i := 0 to aDataSet.FieldCount - 1 do
case ADataSet.Fields[i].DataType of
ftSmallint, ftInteger, ftWord, ftAutoInc, ftBytes:
WriteIntegerCell(aDataSet.Fields[i].AsInteger);
ftFloat, ftCurrency, ftBCD:
WriteFloatCell(aDataSet.Fields[i].AsFloat)
else
WriteStringCell(aDataSet.Fields[i].AsString);
end;
aDataSet.Next;
end;
//写文件尾
AFileStream.WriteBuffer(arXlsEnd, SizeOf(arXlsEnd));
if ADataSet.BookmarkValid(ABookMark) then
aDataSet.GotoBookmark(ABookMark);
finally
AFileStream.Free;
ADataSet.EnableControls;
end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
if SaveDialog1.Execute then
begin
ExportExcelFile(SaveDialog1.FileName,True,DBGrid1.DataSource.DataSet);
end;
end;

end.


declarations section怎么写

declarations section 声明段 例句: 1 With this overview of how the program works, let's begin at the beginning with the declarations section. 大致了解了程序的运行原理后,让我们从带有声明部分的开头位置开始学习。 2 The declarations section is also optional; you can omit it entirely if you don't invoke gperf with the-t option. 声明部分也是可选的;如果没有使用-t选项调用gperf,则完全可以忽略声明部分。

ABAP怎么删除创建好的class

在程序中, 对象的识别和寻址是通过对象引用来实现的, 对象引用变量可以访问对象的属性和方法. ABAP 中的类也有程序内部的局域类和全局类之分, 其作用范围不同. ABAP中的全局类是通过ABAP工作台中的类创建工具 Class Builder 开发的, 保存在系统类库程序 Class Pool 中, 可供所有程序作用. 一. 程序中类的定义. 1. 类声明及实现 * Class Declarations CLASS application DEFINITION. PUBLIC SECTION. METHODS: show_text. PRIVATE SECTION. DATA text(100) TYPE c VALUE 'This is my first ABAP Object.'. ENDCLASS. CLASS application IMPLEMENTATION. METHOD show_text. WRITE text. ENDMETHOD. ENDCLASS. 2. 成员可见性. 公有: 可被所有对象使用. PUBLIC SECTION. 保护: 只能被本类及其派生类中的方法使用. PROTECTED SECTION. 私有: 只能被类本身的方法所使用. PRIVATE SECTION. 公有部分常常用来定义类的方法, 而类属性则一般定义为类的私有或保护数据, 只能通过自身或其派生类的方法来操作. 3. 成员类型. 可定义三种不同类型的成员, 分别是属性, 方法和事件. 属性是在类内部的数据对象, 对于实例属性, 用 DATA 定义, 语法与数据对象声明相同; 对于静态属性(类属性), 使用 CLASS-DATA 语句定义, 在类的声明部分定义. * Class Declarations CLASS application DEFINITION. PUBLIC SECTION. CLASS-DATA class_name(10) type c value 'Vehicle'. "静态属性 PRIVATE SECTION. DATA speed TYPE i. ENDCLASS. 对于公有组件还可以在属性定义语句中增加 READ-ONLY 关键字, 则该属性不能被类外部读取但可被类的内部方法所修改. 除 DATA 外, 也可以使用 CONSTANT 语句定义类常量, 必须在类定义时指定其值. 使用 TYPES 语句在类中定义的数据类型, 相当于静态属性, 其定义方法与普通 ABAP 程序类似. 类方法需要在类的声明和实现两部分进行定义, 在类的声明部分说明方法的参数接口, 在实现部分则通过 ABAP 代码完成具体的功能. 方法的声明关键字为 METHODS 和 CLASS-METHODS. METHODS meth IMPORTING ... i1 TYPE ... EXPORTING ... e1 TYPE ... CHANGING ... c1 TYPE ... EXCEPTIONS ... x1 TYPE ... 定义了方法及方法的参数接口, 和 FORM 相似, 但没有 TABLES 参数. CLASS vehicle DEFINITION. PUBLIC SECTION. CLASS-DATA class_name(10) TYPE c VALUE 'Vehicle'. METHODS: accelerate, show_speed. PRIVATE SECTION. DATA speed TYPE i. ENDCLASS. CLASS vehicle IMPLEMENTATION. METHOD accelerate. speed = speed + 1. ENDMETHOD. METHOD show_speed. WRITE: / 'Speed: ', speed. ENDMETHOD. ENDCLASS. 二. 定义系统全局类. 通过 Class Builder 工具在类型为 K 的 ABAP 类库

英文高手帮忙翻译一下以下资料:报关问题处罚条例,先谢谢了。不好意思新人没多少金币

Customs statistics on the handling of cases of inaccurate reporting of project issues related to notice
Dear Customer:
Thank you for your continued support the company and trust.
Customs received an important notice, since August 2011 from the customs area will be formally implemented for General Administration of Customs statistics on cases of inaccurate reporting of project issues related to notice, and further implementation of the new error reporting statistics related items Penalties.
As the statistics involved in projects and enterprises is closely related to the import and export goods declaration, in order to avoid affecting the normal import and export business of goods and a good corporate reputation, please provide in the course of the goods declaration data (particularly those involving statistical projects) must be seriously, true and accurate.
In addition, instead of both our companies can no longer confirm the cargo information, such as product number, product name, weight, etc. Please be sure to declare before the company itself that the relevant information and provided to the Division I thank!
With the following documents for reference. If you have any questions, please do not hesitate to contact us, thank you!

Annex 1: inaccurate reporting of the statistics involved in the project
Annex 2: range of administrative penalties for inaccurate reporting of reference


The General Administration of Customs documents [2011] Important Notice No. 227

Dear Dear Partner:

Customs received an important notice, starting from July 2011 to implement the customs area will be formally issued Customs Department system [2011] No. 227 for statistics on cases of inaccurate reporting of the project the issue of notice, and further implement the notice of all serious reporting statistics entry errors related penalties, fines regulations.

The relevant document content with the import and export enterprises are closely related, so special to all partners for the first time items related to reporting and penalties (fines) content of communications and notices. Hope all units must pay close attention.
The following details for specific penalties and punishment range project content:

Table 1: Details related to the project (screenshot)
Annex 1
Statistics relevant part project declaration
1 Name and Code: Product number, product name, specification number.
Number 2: Quantity and units (including statutory amount and the first unit, the statutory amount and the second unit, transaction number and unit).
3 Price: transaction methods, freight, insurance premiums, fees, unit price, total price, currency.
4 business units
5 trade (regulation)
6 modes of transport
7 imported goods the country of origin (region)
8 shipment of imported goods the country (region)
9 Imports of goods within the destination
10 country of final destination of exported goods (region)
11 exports of goods arrived in the country (region)
12 exports of goods within territory
13 import date
14 exit date
15 Other statistics project
16 import port / export ports
17 GW
18 NW
Container No. 19
Penalty rate details
The first project to unify statistical administrative penalties for inaccurate reporting of cases of punishment range applicable standards, to improve the quality of case handling, according to [Administrative Punishment Law of the People's Republic] (hereinafter referred to as [the Administrative Punishment Law]) and [People's Republic of Customs Regulations on Administrative Punishment ] (hereinafter referred to as [Penalties] and with the relevant provisions of customs practices, the development of the reference standard.
Article reference standard for [Penalties] Article 15 provides that the accuracy of customs statistics, the impact of inaccurate reporting of cases of statistical programs.
The third line with the general plot of the inaccurate reporting of cases of statistical projects, increase penalties in accordance with the following provisions:
(A) the price, the number of errors:
1. Error means the price for the transaction method, freight, insurance premiums, fees, unit price, total price, currency and other reporting errors resulted in a declaration section of goods and the actual dollar value of the statistical value of goods (hereinafter referred to as "the value of goods" and in U.S. dollars , below) the case of numerical errors occur;
2. Refers to the number of errors due to the statutory amount, the number of transactions submitted to a single part to declare such an error resulted in a number of goods declared and the actual quantity of goods numerical error occurs the situation; the statutory amount including statutory and legal second number the first number to [the People's Customs statistics of the Republic Catalog] units of measurement specified in terms;
3. Reference to the following penalties:
Error of no more than 10 million people, be a warning or a fine of $ 1,000 fine;
Error 10-100 million (inclusive), at 1,000 -5 fine of 1,000 yuan;
Error in 100 million or more, at 5,000 -1 million (inclusive) fine.
(B) other statistical items in error:
Among them, the country of origin of imported goods (region), exports of goods, country of final destination (region), trade, business units of the wrong, be a warning or a fine of $ 1,000 -5 yuan (inclusive) a fine; the remaining error, be warning or a fine of $ 1,000 fine.


如何在 Visual Basic 中使用 ADO OpenSchema 方法

Microsoft Access 97 and Access 2000
To list all of the tables and queries in the Microsoft Access NWind database, simply use the following code: Set rs = cn.OpenSchema(adSchemaTables)
While Not rs.EOF
Debug.Print rs!TABLE_NAME
rs.MoveNext
Wend
To list only the tables in the Access Nwind database, use: Set rs = cn.OpenSchema(adSchemaTables, _
Array(Empty, Empty, Empty, "Table")
Use the same syntax, using the OLE DB Provider for ODBC with the Jet ODBC driver and using the Jet OLE DB Providers.
Microsoft SQL Server 6.5 and 7.0
To list all of the tables and views in the Microsoft SQL Server Pubs Database, use: Set rs = cn.OpenSchema(adSchemaTables)
To list just the tables in the Microsoft SQL Server Pubs database, use:
Set rs = cn.OpenSchema(adSchemaTables, _
Array("Pubs", Empty, Empty, "Table")
Use the same syntax using the OLE DB Provider for ODBC with the SQL Server ODBC driver and using the OLE DB Provider for SQL Server.
QueryType Criteria
===============================

adSchemaColumns TABLE_CATALOG
TABLE_SCHEMA
TABLE_NAME
COLUMN_NAME
Use adSchemaColumns to list the fields in a table.
Microsoft Access 97 and Access 2000
To list the fields in the Employees table in the Access Nwind database With adSchemaColumns, simply use: Set rs = cn.OpenSchema(adSchemaColumns,Array(Empty, Empty, "Employees")

While Not rs.EOF
Debug.Print rs!COLUMN_NAME
rs.MoveNext
Wend
This works using the OLE DB Provider for ODBC with the Jet ODBC Driver and using with the Jet OLE DB Providers.
Microsoft SQL Server 6.5 and 7.0
To list the fields in the Authors table in the SQL Server Pubs database with adSchemaColumns, simply use: Set rs = cn.OpenSchema(adSchemaColumns, Array("pubs", "dbo", "Authors")
Note that TABLE_CATALOG is the database and TABLE_SCHEMA is the table owner. This works using the OLE DB Provider for ODBC with the SQL Server ODBC driver and using the OLE DB Provider for SQL Server.
QueryType Criteria
================================

adSchemaIndexes TABLE_CATALOG
TABLE_SCHEMA
INDEX_NAME
TYPE
TABLE_NAME
You provide the index name in case of adSchemaIndexes querytype.
Microsoft Access 97 and Access 2000
To list the Indexes in the Employees table in the Access Nwind database With adSchemaIndexes, simply use: Set rs = cn.OpenSchema(adSchemaIndexes, _
Array(Empty, Empty, Empty, Empty, "Employees")

While Not rs.EOF
Debug.Print rs!INDEX_NAME
rs.MoveNext
Wend
This works using the OLE DB Provider for ODBC with the Jet ODBC Driver and using with the Jet OLE DB Providers.
Microsoft SQL Server 6.5 and 7.0
To list the Indexes in the Authors table in the SQL Server Pubs database with adSchemaIndexes, simply use: Set rs = cn.OpenSchema(adSchemaIndexes, _
Array("Pubs", "dbo", Empty, Empty, "Authors")
This works using the OLE DB Provider for ODBC with the SQL Server ODBC driver and using the OLE DB Provider for SQL Server. The following steps demonstrate the OpenSchema Method.
OpenSchema Method Example
In Visual Basic (VB), select a standard EXE project. Add three Command buttons to the EXE project. From the Project menu, choose References. In the References dialog box, select Microsoft ActiveX Objects Library. This sample uses the Pubs database provided with SQL Server. You need to change the data source name (DSN) to a DSN on your computer. Paste the following code into the GENERAL DECLARATIONS section of the Project:

Note You will need to change UID= and PWD= to the correct values before you run this code. Make sure that UID has the appropriate permissions to perform this operation on the database. 'Open the proper connection.
Dim cn As New ADODB.Connection
Dim rs As New ADODB.Recordset

Private Sub Command1_Click()
'Getting the information about the columns in a particular table.
Set rs = cn.OpenSchema(adSchemaColumns, Array("pubs", "dbo", _
"authors"))
While Not rs.EOF
Debug.Print rs!COLUMN_NAME
rs.MoveNext
Wend

End Sub

Private Sub Command2_Click()
'Getting the information about the primary key for a table.
Set rs = cn.OpenSchema(adSchemaPrimaryKeys, Array("pubs", "dbo", _
"authors"))
MsgBox rs!COLUMN_NAME
End Sub

Private Sub Command3_Click()
'Getting the information about all the tables.
Dim criteria(3) As Variant
criteria(0) = "pubs"
criteria(1) = Empty
criteria(2) = Empty
criteria(3) = "table"
Set rs = cn.OpenSchema(adSchemaTables, criteria)
While Not rs.EOF
Debug.Print rs!TABLE_NAME

rs.MoveNext
Wend

End Sub

Private Sub Form_Load()
cn.Open "dsn=pubs;uid=;pwd=;"
'To test with the Native Provider for SQL Server, comment the
' line above then uncomment the following line. Modify to use
' your server.
'cn.Open "Provider=SQLOLEDB;Data Source=;" & _
' "User ID=sa;password=;"

End Sub
Run. Click each Command button to test. End.Modify the Form Load event procedure to use the Native Provider for SQL Server. Again test. More information on querytype and Criteria is available in the ADO documentation. The schema information specified in OLE DB is based upon the assumption that the provider supports the concept of a catalog and schema.


eclipse中ctril+shift+l什么作用

eclipse中ctril+shift+l这个是自己设置的快捷键吧,好像没有这个快捷键


eclipse的maven build有什么作用

eclipse的maven build是用来编译eclipse工程的。 1、maven的Build Lifecycle分为三种,分别为default(处理项目的部署)、clean(处理项目的清理)、site(处理项目的文档生成)。他们都包含不同的lifecycle。Build Lifecycle是由phases构成的,下面重点介绍default Build Lifecycle几个重要阶段: validate 验证项目是否正确以及必须的信息是否可用 compile 编译源代码 test 测试编译后的代码,即执行单元测试代码 package 打包编译后的代码,在target目录下生成package文件 integration-test 处理package以便需要时可以部署到集成测试环境 verify 检验package是否有效并且达到质量标准 install 安装package到本地仓库,方便本地其它项目使用 deploy 部署,拷贝最终的package到远程仓库和替他开发这或项目共享,在集成或发布环境完成。 以上的phase是有序的(注意实际两个相邻phase之间还有其他phase被省略,完整phase见lifecycle),下面一个phase的执行必须在上一个phase完成后 2、若直接以某一个phase为goal,将先执行完它之前的phase,如mvn install将会先validate、compile、test、package、integration-test、verify最后再执行install phase

Eclipse里public static final int RESULT_CODE=1001;什么作用

这条语句声明了一个公有的静态的常量值RESULT_CODE
并且初始化值为1001


英文论文要求2400 characters per page是什么意思?

表示把握大时用(十有八九)
表示很不容易时用(九牛二虎之力)
表示信心十足时用(十拿九稳)
表示距离远时用(十万八千里)


美国大学英语论文中,work cited page 怎么写?

是reference吧?标准格式可以用APA格式。double space,new times roman 12号,例如Sheril, R. D. (1956). The terrifying future: Contemplating color television. San Diego: Halstead. 具体根据作者出处国籍等有很多变化,已附完整的APA写法手册。 文章段落结尾只需写(作者,年份)

投稿 title page 里面的作者的degree,m.d.是指什么

下面几个基本所有杂志都要求:
Title, author (identify who is the corresponding author), affiliation, contact information (有的只要求通讯作者,有的要求全部作者)
至于还没有别的(比如SHORT TITLE as a Running Head),看journal的具体情况,自己应该去主页好好找找author resources


英国英文毕业论文内容包括哪些结构

1、Title page--标题页
这是一篇英国Dissertation的第一部分,其实标题本身就是能告诉读者你的研究到底是什么的一个最好的说明,读者通过标题知道你研究的主题是什么。
2、Abstract--摘要
在整篇Dissertation中摘要是论文字数最少的一部分了,但是也要认真对待;从根本上来说,摘要是对毕业论文的一个简单的总结,其中包括为什么你要做这个研究,是怎么样做的以及做完这个研究的成果与它可能产生的影响等。
3、Content pages--内容页
在该部分中,一般会说明和介绍本论文的主要结构,在这一部分,留学生会发现Dissertation内容中的不同部分不平衡的现象变得越来越明显,因此要对内容进行检查以及合并。如果太多就分成几个小部分,太少的话就自己进行创作补充,这都是很有必要的。
4、Introduction--前言
这一部分作为毕业论文正文的第一部分,前言一般有两个作用,扩大Abstract中材料的总结和为剩下的Dissertation中的内容提供一个很好地指示标。通常情况下都是最好放在最后完成,否则你会完全不知道你在介绍什么,当然,放在前面还是后面写要因人而异,也可以跟导师商量哦。
5、The literature review, or context of the study---文献回顾,背景研究
文章的主要目的是让你介绍一下你的研究领域的总体背景,从而让读者明白文章的研究主题是适用于该研究领域的。


论文中引用网页中内容,不是文献,该如何标注!!

论文中引用网页中内容,不是文献,该如何标注!!

1、论文中的引用文献分为完全应用和部分引用,完全引用的句子需要标记的是完全引用的符号,部分应用的句子则标注中心思想应用的符号即可。 2、在引用的句子后面加入中括号,并子排好编号,选中引用号,单击鼠标右键,在弹出来的会话框中选择字体。 3、在跳出来的”字体“会话框的”上标“前面单击,使得前面有个勾。 4、在完全引用的句子后面打上中括号,把鼠标的输入状态指针放入到中括号。点击工具栏中的”引用“,”插入脚注。 5、选中插入的应用,单击鼠标右键,选中”字体“。在字体会话框中选择”上标“,”确定“即可。

flex和actionscript有什么区别

flex是一款集成开发环境
actionscript是一种编程的语言
ActionScript可以写在Flex平台中,通过flex编译成网站或应用程序。

好比是C#与visual studio。java与Eclipse的感觉


Flex4 fx:Declarations中的代码什么时候执行

界面初始化的时候就已经执行的, 一般放那些需要标签定义的,但是不需要显示在界面上的东西, 如定义线条的颜色, 效果的设置等都可以放在里面.


flex中 <fx:script> <xm:script> 区别

是在Flex4里用的标签,是Flex3里所使用的标签,用哪个取决于你们项目所使用的Flex版本


Flex 与FLash 的区别

运用Flash是完全可以做到flex的效果
但Flash是为了designer(设计者)设计的,界面还有flash的动画概念和程序开发人员格格不入。

Flex是为developers(开发者)设计的。为了吸引更多的jsp/asp/php等程序员,Adobe推出了Flex,用非常简单的.mxml来描述界面给jsp/asp/php程序人员使用.(x/d)html非常相似,而且mxml更加规范化、标准化。

现在Adobe Flex更名为Adobe Flash Builder


flex4 1.as调用2.mxml中的一个文本框内容

你得首先表达清楚你想做出什么效果,这么写代码完全不行啊,逻辑结构就很大问题。

本来 ss 就和你 按钮 在一块 ~ 为什么要用到 csxxf 类去转一圈修改 ss 的内容呢?


c语言字符串问题

int retval = scanf("%s",str1);; // 正确读入一个字符串后,会返回1,但无论如何也不会返回EOF(-1)。


busybox 1.16.1执行完make menuconfig设置了CROSS_COMPILE后执行make ARCH=arm?

你直接make看能否过,感觉很像交叉编译器没有指定上。
另外,你可以先不执行make menuconfig的,直接make一下看文件是否完整。
还有,搞了make menuconfig后,最好再执行一次make clean清一下垃圾文件。


UDA1341驱动的问题

你这是编译没通过啊,看你的程序说没定义啊


error: ISO C++ forbids declaration of 'CREATE_FUNC' with no type [-fpermissive]

直白的说就是头文件中没有相关函数的定义。可能你没声明或者函数写错了(名称或者参数),或者头文件中有声明但是忘了添加头文件,或者多个头文件交叉调用。
检查下定义REATE_FUNC的头文件,是不是定义错误或者调用的时候用错类型;另外,看下有没有添加对应的头文件,或者是在声明函数、类之前发生了提前调用或者定义。


matlab程序问题求教啊~~

楼上的回答基本正确,应该把代码保存为m文件,然后通过脚本或者在命令窗口中直接输入命令来调用。但由于没仔细看这个函数的功能,所以举的例子不恰当。

这段代码的功能对哥德巴赫猜想(对于任一大于2的偶数,都可表示成两个质数之和)的素数分拆进行验证,也就是说,给定一个大于4的偶数,程序会返回两个素数,该两个素数之和为输入的偶数。如果输入不满足条件(为奇数或者不是大于4的整数),则报错退出。
楼上所举的例子输入为5,刚好在输入判断时会报错(Input number error!),可能对楼主造成新的困惑。

另外,对上述代码,提几点应该改进的地方:
(1)for循环的起点:不应该从1开始。1和0既非素数也非合数,所以循环体里面的if语句对于1而言条件肯定不成立,没必要多此一举。进一步的,由于输入要求是大于4的偶数,循环的起点可以考虑从3开始,因为素数分拆包括2的情况只有一个:4=2+2,对其他偶数都不可能。
(2)for循环的终点:改成n/2为宜。因为分拆成两个素数相加,其中肯定有一个不超过n/2。当然,这样的修改其实基本没什么影响,因为从实际执行效果来说,i肯定不会超过n/2,但从算法角度而言应该考虑这样的细节。另外,由于MATLAB的for循环是基于索引的,1:n和1:n/2效果还是不一样的,前者要多消耗一些资源。
(3)关于输入判断:哥德巴赫猜想的素数分拆解包括偶数4,而这里排除了4。
(4)关于报错:这里对于不合要求的输入只提示“Input number error!”而没有进一步的信息,不可取。应该解释输入为什么不合要求,或者说明,对输入有什么样的要求。


??? Strings passed to EVAL cannot contain function declarations.

要把这部分存到一个叫vad.m的文件里

function [x1,x2]=vad(x) %端点检测函数
x=double(x);
x=x/max(abs(x));
FrameLen=256;
FrameInc=128;
amp1=10;
amp2=5;
zcr1=10;
zcr2=5;
maxsilence=3.2;
minlen=15;
status=0;
count=0;
silence=0;
%计算过零率
temp1=enframe(x(1:length(x)-1),FrameLen,FrameInc);
temp2=enframe(x(2:length(x)),FrameLen,FrameInc);
signs=(temp1.*temp2)<0;
diffs=(temp1-temp2)>0.02;
zcr=sum(signs.*diffs,2);
%计算短时能量
amp=sum(abs(enframe(filter([1-0.9375],1,x),FrameLen,FrameInc)),2);
%调整能量门限
amp1=min(amp1,max(amp)/4);
amp2=min(amp2,max(amp)/8);
%开始端点检测
x1=0;
x2=0;
for n=1:length(zcr)
goto=0;
switch status
case{0,1}
if amp(n)>amp1
x1=max(n-count-1,1);
status=2;
silence=0;
count=count+1;
elseif amp(n)>amp2 |...
zcr(n)>zcr2
status=1;
count=count+1;
else
status=0;
count=0;
end
case 2,
if amp(n)>amp2 |...
zcr(n)>zcr2
count=count+1;
else
silence=silence+1;
if silence < maxsilence
count=count+1;
elseif count<minlen
status=0;
silence=0;
count=0;
else
status=3;
end
end
case 3,
break;
end
end
count=count-silence/2;
x2=x1+count-1;
subplot(311)
plot(x)
axis([1 length(x) -1 1])
ylabel('speech');
line([x1*FrameInc x1*FrameInc],[-1 1],'color','red');
line([x2*FrameInc x2*FrameInc],[-1 1],'color','red');

subplot(312)
plot(amp);
axis([1 length(amp) 0 max(amp)])
ylabel('energy');
line([x1 x1],[min(amp),max(amp)],'color','red');
line([x2 x2],[min(amp),max(amp)],'color','red');

subplot(313)
plot(zcr);
axis([1 length(zcr) 0 max(zcr)])
ylabel('zcr');
line([x1 x1],[min(zcr),max(zcr)],'color','red');
line([x2 x2],[min(zcr),max(zcr)],'color','red');



然后在命令窗口下输入

clear;
x = wavread('E:\音乐\game_ready.WAV');
[x1,x2]=vad(x)


matlab编程为什么出现这样的错误???? Strings passed to EVAL cannot contain function declarations.

function abc() i=2;r=2;l=2; t=0:0.001:5; ul=-r*i*exp(-r*t/l); il=i*exp(-r*t/l); pl=1.0/2*l*il.*il; % 这里要用点乘 il.*il subplot(1,3,1);plot(t,ul); title('ul(t)'); grid on; subplot(1,3,2);plot(t,il); title('il(t)'); grid on;subplot(1,3,3);plot(t,pl); title('Pl(t)'); grid on;

MATLAB高手请进,出现如此提示是什么意思啊?

文本宏的错误,你的原始命令是什么?


Dijstra算法matlab实现,怎么不行呢?显示下面的错误:

应该没问题的 函数中没eval函数啊


隐含模块中的编译错误怎么办

1需解决的问题

2打开所在编辑环境,如一个超级浏览框的组件,点击它

3看左边工作夹区域,选择属性

4点击“静默”右边的下三角,选择“真”

5、再点击编译或者静态编译,就不会出现这样的问题了


Excel为何弹出隐含模块中的编译错误

Excel为何弹出隐含模块中的编译错误

出现此问题的原因为:Excel软件出现异常,需要修复。 具体如下: 1、第一步,win+r调出“运行”窗口,输入“cmd”命令,然后单击“确定”按钮,见下图,转到下面的步骤。 2、第二步,执行完上面的操作之后,输入如下的第一条命令并确认,见下图,转到下面的步骤。 3、第三步,执行完上面的操作之后,输入第二条命令,然后再次打开Excel,不再有编译错误,见下图。这样,就解决了这个问题了。

word文件打开隐藏的模块中的编译错误:MTLibCommon

可能是第三方模板或加载项有问题。
打开word,左上角office图标,word选项,加载项,看有哪些陌生的com加载项。
再点击转到,看有哪些不认识的,删除了或取消勾选。

都不行的话,卸载重装office软件。
如果是病毒引起,可以考虑用360杀毒全盘扫描以及宏病毒扫描。


word出现“隐含模块中的编译错误:newmacros”怎么办

有个类似的问题前段时间解决了,你可以参照一下: 前段时间在系统中安装了office ready软件,结果打开EXCEL时出现"无法装载这个对象,因为它不适用于这台计算机"对话框,确定后又出现"隐含模块中的编译错误:ThisWorkbook",确定后可以使用EXCEL,但每次都出现这个提示,我后来把OFFICE中系统中彻底卸载了,又重新安装OFFICE,安装后想肯定不会在出现这个提示了,但还又出现了. 没办法在网上搜索也没解决问题,搞了几天也没搞定,偶然有一天我进入我的用户目录中删除垃圾文件,在C:\Documents and Settings\Administrator\Application Data\Microsoft发现有一个Excel目录,该目录下有两个子目录,一个是AltStart子目录,另一个是XLSTART子目录,后一个子目录是空的,而前一个子目录中有一个文件"ORPRO_v3 Start",通过查看该文件属性,发现该文件就是office ready软件安装后的遗留的一个文件,虽然把OFFICE彻底卸载了,但没有在C:\Documents and Settings\Administrator\Application Data\Microsoft\Excel\AltStart中把其删除,然后我把C:\Documents and Settings\Administrator(登录计算机名字的目录)\Application Data\Microsoft\Excel\AltStart目录下的ORPRO_v3 Start这个文件删除,结果就没有上面的提示了,该文件由于是一个宏文件,在Excel启动时都加载,所以每次运行EXCEL时都会把该宏文件加载,每次都会出现这个的错误提示.大家可以根据我上面的提示,以后再出现类似的问题,相信可以迎刃而解了


word出现“隐含模块中的编译错误:normalnkl”怎么办

方法 1:下载最新版本的 Adobe Acrobat 5.0 加载项
要获得更新的 Adobe Acrobat 5.0 加载项,请访问以下 Adobe 网站:
http://www.adobe.com/cn/products/acrobat/
注意 Microsoft 不支持从 Adobe 网站下载和安装加载项。如果您需要帮助,则必须与 Adobe 技术支持联系。
方法 2:移动文件
将 Pdfmaker.dot 文件和来自 Office 或 Excel 启动文件夹的 Pdfmaker.xla 文件(如果存在)移动到硬盘上的其他文件夹。例如,您可以将文件移动到“我的文档”文件夹中。

若要我们为您移动这些文件,请转到“帮我修复此问题”部分。如果您想自己修复此问题,请转到“我自己修复此问题”部分。
帮我修复此问题
要自动删除这些文件,请点击 “修复此问题”链接。单击“文件下载”对话框中的“运行”,并按照该向导中的步骤执行操作。
修复此问题
Microsoft Fix it 50303


注意:此向导可能只提供英文版本。但是,Windows 的其他语言版本也提供自动修复功能。

注意:如果您使用的计算机并未出现此问题,则可将自动修复功能保存至闪存驱动器或 CD 中,然后就可在出现此问题的计算机中运行该功能。
我自己修复此问题
注意:由于 Microsoft Windows 有多个版本,因此下列步骤可能会因您所使用的计算机而不同。如果是这样,请参阅您的产品文档来完成这些步骤。

要自行删除这些文件,请按照以下步骤操作:
单击「开始」,指向“搜索”,然后单击“文件或文件夹”。
在“要搜索的文件或文件夹名为”框中,键入 pdfmaker.dot pdfmaker.xla。
在搜索范围框中,单击安装有 Windows 的磁盘驱动器(如 C:),然后单击立即搜索。

Pdfmaker.dot 文件位于以下某个文件夹中:
C:\Program Files\Microsoft Office\Office\Startup (Word 2000)
C:\Program Files\Microsoft Office\Office10\Startup (Word 2002)
C:\Documents and Settings\用户名\Application Data\Microsoft\Word\Startup
Pdfmaker.xla 文件位于以下某个文件夹中:
C:\Program Files\Microsoft Office\Office\Xlstart (Excel 2000)
C:\Program Files\Microsoft Office\Office10\Xlstart (Excel 2002)
C:\Documents and Settings\用户名\Application Data\Microsoft\Excel\Xlstart
在“搜索结果”窗口中,右键单击适当的文件(对于找到的每一个文件),然后单击剪切。
在您的桌面上,右键单击我的文档文件夹,然后单击粘贴。
回到顶端
方法 3:访问 Symantec 网站获取有关 Norton Antivirus 的更多信息和产品更新
要解决此问题,请访问以下 Symantec 网站,以获取更多信息和产品更新


相关阅读

是否是什么意思_意思_词汇大全意思全集

概括:本文是早旭阅读网网友分享的词汇大全,专注各种词汇解释,分享网络词语的意思,助你增长知识。是否是什么意思:是否驻会是什么意思”...

declarations-declarations

Declarations是什么意思声明(declaration的复数);宣言;(纳税品在海关的)申报;【法】(原告的)申诉宣告;宣告类;宣布N-COUNT A decla...

生的伟大死的光荣-生的伟大死的光荣

“生的伟大,死的光荣。”是毛主席给谁的题词?“生的伟大,死的光荣”这八个大字是毛泽东为刘胡兰题的词。1947年1月12日,刘胡兰被国民党...

单薄的意思是什么_意思_词汇大全意思全集

概括:本文是早旭阅读网网友分享的词汇大全,专注各种词汇解释,分享网络词语的意思,助你增长知识。单薄的意思是什么:单薄是什么意思?指...

识汝不识丁 电视剧_网络剧《识汝不识丁》大结局:陶墨顾射基情曝光遭唾弃_识汝不识丁 电视剧,识汝不识丁, ,电视剧

网络剧《识汝不识丁》终于播出,由于此剧良心制作,备受好评。所以才播出一集,便有观众追问《识汝不识丁》大结局是怎样的。由于该电视剧...

大家都在找