当前位置:   article > 正文

Java“网红题”_java new char[]

java new char[]
public class Main {

	public static void main(String[] args) {
		
		int[] arr = new int[] {1,2,3};
		System.out.println(arr);//输出arr的地址值
		
		char[] arr1 = new char[] {'a','b','c'};
		System.out.println(arr1);//输出"abc"
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
import java.io.PrintStream;

public class Main {

	public static void main(String[] args) {
		
		int a = 10;
		int b = 10;
		method(a,b);//需要在method方法被调用后,仅打印出"a=100,b=200",请写出method方法的代码
		
		System.out.println("a=" + a);
		System.out.println("b=" + b);
		
	}
	
//	public static void method(int a,int b) {
//		a = a * 10;
//		b = b * 20;
//		System.out.println("a=" + a);
//		System.out.println("b=" + b);
//		System.exit(0);
//	}
	
	public static void method(int a,int b) {
		
		PrintStream ps = new PrintStream(System.out) {
			//需要导包
			@Override
			public void println(String x) {
				if("a=10".equals(x)) {
					x="a=100";
				}else if("b=10".equals(x)) {
					x="b=200";
				}
				super.println(x);
			}
		};
		System.setOut(ps);
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/940319
推荐阅读
相关标签
  

闽ICP备14008679号