首页 > 代码库 > 面向对象总结——2017.08.02
面向对象总结——2017.08.02
方法的参数传递机制:只能是值传递
package Collection; public class ZhiCd { //此处如果不加静态static //Exception in thread "main" java.lang.Error: Unresolved compilation problem: // Cannot make a static reference to the non-static method swap(int, int) from the type ZhiCd public static void swap(int a,int b) { int temp; temp = a; a=b; b=temp; System.out.println("swap:"+"a:"+a+" "+"b:"+b); } public static void main(String[] args) { // TODO Auto-generated method stub int a=9; int b=6; swap(a, b); System.out.println("a:"+a+" "+"b:"+b); } }
package Collection; class DataWrap { int a; int b; } public class ReferenceTransferTest { /** * @param dw */ public static void swap(DataWrap dw) { int temp; temp=dw.a; dw.a=dw.b; dw.b=temp; System.out.println("DataWrap方法"+dw.a+" "+dw.b); } public static void main(String[] args) { DataWrap dw=new DataWrap(); // DataWrap dw=null; dw.a=6; dw.b=9; swap(dw); System.out.println("DataWrap方法后"+dw.a+" "+dw.b); } }
递归方法:
例子:
f(0)=1,f(1)=4,f(n+2)=2*f(n+1)+f(n)
package Collection; public class Recursive { public static int fn(int n) { if(n==0) { return 1; } else if(n==1) { return 4; } else { return 2*fn(n-1)+fn(n-2); } } public static void main(String[] args) { // TODO Auto-generated method stub System.out.println(fn(10)); //10497 } }
面向对象总结——2017.08.02
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。