0 0

Array constants can only be used in initializers10

String params[];
params[]={user.getName(),user.getUsername(),user.getPassword(),
  user.getDeb_id()+"",
  user.getDep_id()+"",
  user.getDut_id()+""};

这样声明不可以么 》??求原因

问题补充:
Wind_ZhongGang 写道
你这是使用的java语言?

en 
DAO 
2011年10月12日 10:25

3个答案 按时间排序 按投票排序

0 0

采纳的答案

不可以

String params[];
params[]={user.getName(),user.getUsername(),user.getPassword(),
  user.getDeb_id()+"",
  user.getDep_id()+"",
  user.getDut_id()+""}; 
这样你声明的params数组没有具体的引用,不可用

如果这样
String params[]={user.getName(),user.getUsername(),user.getPassword(),
  user.getDeb_id()+"",
  user.getDep_id()+"",
  user.getDut_id()+""};
或
String params[]=new String[]{user.getName(),user.getUsername(),user.getPassword(),
  user.getDeb_id()+"",
  user.getDep_id()+"",
  user.getDut_id()+""};
声明的同时初始化,数组的静态初始化
 

2011年10月12日 11:05
0 0

// 正确
String[] params = {"1","2","3"};

// 报错
String[] params;
params = {"1","2","3"};

第2种写法,编译的时候编译器不知道params 的类型,所以才报错。如果这种写法正确,看看下面的写法:
Object[] params;
params = {"1","2","3"};//这个地方有歧义,Object类型还是String类型

2011年10月12日 11:12
0 0

你这是使用的java语言?

2011年10月12日 11:00

相关推荐

    Google C++ Style Guide(Google C++编程规范)高清PDF

    More complex inline functions may also be put in a .h file for the convenience of the implementer and callers, though if this makes the .h file too unwieldy you can instead put that code in a ...

    RS编译码算法的实现 c程序

    This program is an encoder/decoder for Reed-Solomon codes. Encoding is in systematic form, decoding via the Berlekamp ... entered -- these can be found in Lin and Costello, and also Clark and Cain.

    前端开源库-oma-constants

    **前端开源库-oma-constants** 在Web开发领域,前端开源库是开发者们的重要资源,它们提供了各种功能和工具,简化了开发流程,提升了代码质量和效率。`oma-constants`是一个专为前端开发设计的开源库,其核心在于...

    avrC语言应用智(1)

    Integer or long integer constants may be written in decimal form (e.g. 1234), in binary form with 0b prefix (e.g. 0b101001), in hexadecimal form with 0x prefix (e.g. 0xff) or in octal form with 0-...

    apc 缓存使用详解

    apc_define_constants ( string key, array constants [, bool case_sensitive] ) 将数组constants以常量加入缓存。 apc_load_constants (string Key)。 取出常量缓存。 apc_store ( string key, mixed var [,...

    TscExcelExport 3.6 full source

    In Delphi 7, 2005, 2006, Turbo Delphi and 2007 these warnings can be disabled in your project options. -------------------------------------------------------------------------------- Version 1.0 ...

    CANape软件编程语言CASL 语法手册

    CANape软件编程语言CASL(Calculation and Scripting Language)是一种用于CANape环境中的脚本语言,用于实现自动化测试、数据分析以及车辆网络诊断等任务。该语言结合了C语言的一些特性,但又具有其独特的语法和...

    xls_constants.zip

    本压缩包`xls_constants.zip`包含了一个名为`xls_constants.py`的文件,它很可能包含了与Excel相关的常量定义,这些常量在操作Excel工作簿、工作表、单元格等时会用到。 `win32com`库是Python的第三方库,由`pywin...

    PyPI 官网下载 | constants_set-0.4.tar.gz

    《PyPI官网下载 | constants_set-0.4.tar.gz——深入了解Python库的使用与管理》 在Python编程中,PyPI(Python Package Index)是官方的第三方软件包仓库,为开发者提供了一个分享和获取Python模块的平台。...

    Introduction to WinAPI

    Windows API is designed to be used with C language to write the applications under MS Windows operating system environment. Windows API is the closest way to interact with operating system from the ...

    Mastering Swift 4, 4th Edition-Packt Publishing(2017).pdf

    Chapter 15, Swift Formatting and Style Guide, defines a style guide for the Swift language that can be used as a template for enterprise developers who need to create a style guide. Chapter 16, Swift ...

    Ruby.Pocket.Reference

    By default, the last expression evaluated in a method is returned, but explicit returns using the `return` keyword can also be used. 16. **MethodName Conventions** - Discusses naming conventions ...

    Windows Constants

    在编程领域,尤其是在Windows平台开发中,"Windows Constants"是一个重要的概念。这些常量是预定义的数值,代表特定的系统行为、属性或状态,在编写Windows API调用时经常使用。它们提供了代码的可读性和一致性,...

    VclZip pro v3.10.1

    - Uncompressed, Compressed, and Archive file sizes can be up to 2^63-1 bytes in length. - You can compress up to 2147483647 files into an archive. This is compatible with PKZip's Zip64 format. - If ...

    iOS Fuondation Framework Reference

    **Overview**: `NSAffineTransform` is a class that represents an affine transformation matrix, which can be used to perform various geometric transformations such as scaling, rotation, and translation ...

    数位板压力测试

    In this document, the words "tablet" and "digitizer" are used interchange¬ably to mean all absolute point¬ing or digitizing devices that can be made to work with this interface. The definition is ...

    TMS320C6000 Assembly Language Tools User Guider

    - **Symbolic Constants**: Constants that are given names and can be used throughout the code. - **Defining Symbolic Constants (--asm_define Option)**: Allows defining symbolic constants from the ...

    C 程序设计教学课件:Chapter 3 class and object.ppt

    Access control modifiers play a crucial role in managing how class members can be accessed. Public members can be accessed from anywhere, providing an interface for interacting with the object. ...

    The Princeton Companion To Mathematics

    can be regarded as a formal system of the kind that Russell describes, and today’s mathematician is more likely to have other concerns. In particular, in an era where so much mathematics is being ...

Global site tag (gtag.js) - Google Analytics