网站大量收购闲置独家精品文档,联系QQ:2885784924

JAVA程序设计第四章教学课件.ppt

  1. 1、本文档共39页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JAVA程序设计第四章教学课件

4.1 引言 Java程序的基本结构如下: 引入Java类库; 定义用户类1 { ? 定义类1的若干变量或对象: 定义类1的方法1; 定义类1的方法2; … 定义类1的方法M1; } 定义用户类2 { 定义类2的若干变量或对象: 定义类2的方法1; 定义类2的方法2; … 定义类2的方法M2 } } 4.1 引言 Java语言的方法实现子任务处理时,有下面几个原则与规律: (1)算法中需要细化的步骤、程序中重复的代码以及重载父类方法都可以定义成类的方法。 (2)界面清晰。 (3)大小适中。 (4)方法有两种:一种是标准方法,Java API提供了丰富的类和方法,这些方法提供了程序员所需的许多功能。另一种是用户自定义的方法,以解决用户专门需要。 (5)Java应用程序中,程序的执行从main方法开始,调用其他方法后又回到main方法,在main方法中结束整个程序的运行。 4.2 创建方法 Java中声明方法的语法如下: [修饰符] 返回值类型 方法名(参数列表) { 方法体: 局部变量声明; 语句序列; } 4.2创建方法------声明方法头 1.声明方法头 方法头一般由方法名、参数列表、返回类型、方法修饰符 4.2创建方法------声明方法体 4.2创建方法------声明方法体 4.3 方法的调用 例4.1测试max方法 public class TestMax { // Main method public static void main(String[] args) { int i = 5; int j = 2; int k = max(i, j); System.out.println(The maximum between + i + and + j + is + k); }? static int max(int num1, int num2) { if (num1 num2) return num1; else return num2; } } 例4.2测试按值传递 public class TestPassByValue { // Main method public static void main(String[] args) { // Declare and initialize variables int num1 = 1; int num2 = 2; ? System.out.println(Before invoking the swap method, num1 is + num1 + and num2 is + num2); // Invoke the swap method to attempt to swap two variables swap(num1, num2); System.out.println(After invoking the swap method, num1 is + num1 + and num2 is + num2); } ? 例4.2测试按值传递 ? // The method for swapping two variables static void swap(int n1, int n2) { System.out.println( Inside the swap method); System.out.println( Before swapping n1 is + n1 + n2 is + n2); ? // Swapping n1 with n2 int temp = n1; n1 = n2; n2 = temp; ? System.out.println( After swapping n1 is + n1 + n2 is + n2); } } 4-5方法重载 方法重载的意思是:一个类中可以有多个方法具有相同的名字,但这些方法的参数必须不同,即或者是参数的个数不同,或者是参数的类型不同。 例:double max(double num1, double num2) { if (num1 num2) return num1;

文档评论(0)

pangzilva + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档