登录
首页 » Java Develop » 里面有很多j2me编程用的资源,图形,声音等

里面有很多j2me编程用的资源,图形,声音等

于 2023-04-02 发布 文件大小:1.02 MB
0 240
下载积分: 2 下载次数: 1

代码说明:

里面有很多j2me编程用的资源,图形,声音等-There are many j2me programming of resources, graphics, sound, etc.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Java 程序编码规范 所有的程序开发手册都包含了各种规则。一些习惯自由程序人员可能对这些规则很不适应,但是在多个开发人员共同写作的情况下,这些规则是必需的...
    Java 程序编码规范 所有的程序开发手册都包含了各种规则。一些习惯自由程序人员可能对这些规则很不适应,但是在多个开发人员共同写作的情况下,这些规则是必需的。这不仅仅是为了开发效率来考虑,而且也是为了后期维护考虑。 内容: 命名惯例 、Java文件样式 、代码编写格式 、程序编写 、编程技巧 、Swing 、调试 、性能 、可移植性 1) 命名规范 定义这个规范的目的是让项目中所有的文档都看起来像一个人写的,增加可读性,减少项目组中因为换人而带来的损失。(这些规范并不是一定要绝对遵守,但是一定要让程序有良好的可读性) l Package名:Package名应该都是由一个小写单词组成。 l Class名:Class名必须由大写字母开头而其他字母都小写的单词组成 l Class 变量名:变量名用一个小写字母开头。后面的单词用大写字母开头。 l Static Final 变量名:Static Final 变量名应该都大写,并且指出完整含义。 l 参数名:参数的名字必须和变量的命名规范一致。 l 数组名:数组应该总是用下面的方式来命名: byte[] buffer 而不是:byte buffer[] l 方法的参数:使用有意义的参数命名,如果可能的话,使用和要赋值的字段一样的名字: -Java 程序编码规范 所有的程序开发手册都包含了各种规则。一些习惯自由程序人员可能对这些规则很不适应,但是在多个开发人员共同写作的情况下,这些规则是必需的。这不仅仅是为了开发效率来考虑,而且也是为了后期维护考虑。 内容: 命名惯例 、Java文件样式 、代码编写格式 、程序编写 、编程技巧 、Swing 、调试 、性能 、可移植性 1) 命名规范 定义这个规范的目的是让项目中所有的文档都看起来像一个人写的,增加可读性,减少项目组中因为换人而带来的损失。(这些规范并不是一定要绝对遵守,但是一定要让程序有良好的可读性) l Package名:Package名应该都是由一个小写单词组成。 l Class名:Class名必须由大写字母开头而其他字母都小写的单词组成 l Class 变量名:变量名用一个小写字母开头。后面的单词用大写字母开头。 l Static Final 变量名:Static Fina
    2022-07-17 01:03:09下载
    积分:1
  • 用struts/spring/hibernat做的进销存系统,有完整的设计文档
    用struts/spring/hibernat做的进销存系统,有完整的设计文档-Using struts/spring/hibernat make Invoicing system, has complete design document
    2022-03-18 15:29:26下载
    积分:1
  • 它基本的java程序,两个文件及其属性的工作。
    It basic java program to work with Two files and its attributes.
    2022-09-08 13:00:03下载
    积分:1
  • myeclipse using cvs Daquan, main elements: one, the installation and configurati...
    myeclipse使用cvs大全,主要内容: 1、安装与配置cvsnt; 2、在eclipse中配置CVS client; 3、创建一个CVS实例; 4、实践CVS; -myeclipse using cvs Daquan, main elements: one, the installation and configuration cvsnt 2, in the eclipse to configure CVS client 3, to create a CVS examples 4, the practice of CVS
    2022-02-04 15:53:12下载
    积分:1
  • Java切割机 一个很好的Java切割机
    Java切割机 一个很好的Java切割机-Java cutting machine a good Java Cutting Machine
    2022-08-21 09:40:23下载
    积分:1
  • 用JAVA编写同时显示平抛和自由下体运动
    用JAVA编写同时显示平抛和自由下体运动-prepared with JAVA-throwing also showed lower body movement and freedom
    2022-08-31 16:15:04下载
    积分:1
  • 短信网关接入程序,通过套接字获取信息,然后…
    东软短信网关接入程序,通过socket接入消息,然后直接转发到ISMG;同时支持华为短信网关接入。-SMS Gateway Access procedures, access to information through the socket and then transmitted directly to the ISMG; Huawei also support SMS gateway access.
    2023-02-02 23:20:03下载
    积分:1
  • pngencoder
    PngEncoder - convert a Java Image to PNG PngEncoderB - convert a Java BufferedImage to PNG-PngEncoder- convert a Java Image to PNG PngEncoderB- convert a Java BufferedImage to PNG
    2022-08-02 16:10:24下载
    积分:1
  • 文件比对工具,一个比较优秀的小程序,在这里不傲述,看了就知道。...
    文件比对工具,一个比较优秀的小程序,在这里不傲述,看了就知道。-than the right tools, a relatively small fine, and in the pride here is not to, read on to know.
    2022-01-26 07:38:24下载
    积分:1
  • classshapemain.zip// : c03 : AutoInc.java// Demonstrates the and
    classshapemain.zip //: c03:AutoInc.java // Demonstrates the ++ and -- operators. // From Thinking in Java, 3rd ed. (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class AutoInc { public static void main(String[] args) { int i = 1 System.out.println("i : " + i) System.out.println("++i : " + ++i) // Pre-increment System.out.println("i++ : " + i++) // Post-increment-classshapemain.zip// : c03 : AutoInc.java// Demonstrates the and-- operat ors.// From Thinking in Java, 3rd ed. (c) Bruce Eckel 2002// www.BruceEckel. com. See copyright notice in CopyRight.txt. pu blic class AutoInc (public static void main (St. ring args []) (int i = 1 System.out.println ( "i : "i) System.out.println (" i : "i)// Pre-increment System.out.println (" i : "i)// Post-increment
    2022-06-15 15:44:31下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载