2012年遇到i的笔试题_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 2012年遇到i的笔试题

2012年遇到i的笔试题

 2012/3/2 9:59:52  ezfantasy  程序员俱乐部  我要评论(0)
  • 摘要:publicclassNewTest{Stringstr=newString("good");char[]c={'a','b','c'};publicstaticvoidmain(String[]args){NewTestnt=newNewTest();nt.change(nt.str,nt.c);System.out.print(nt.str+"and");System.out.println(nt.c);shorts=Short.MAX_VALUE;System.out.println(s
  • 标签:笔试
public class NewTest {
	String str = new String("good");
	char[] c = {'a','b','c'};
	public static void main(String[] args) {
		NewTest nt = new NewTest();
		nt.change(nt.str, nt.c);
		System.out.print(nt.str + " and ");
		System.out.println(nt.c);
		
		short s = Short.MAX_VALUE;
		System.out.println(s);
	}
	
	private void change(String str,char ch[]){
		str = "test ok";
		ch[0] = 'g';
	}
	
}

运行结果是
good and gbc
32767

1.简述Android应用程序结构是哪些? (以下是我自己认为的答案,非标准,也不知道对错)
  丰富而又可扩展的视图(Views),可以用来构建应用程序, 它包括列表(lists),网格(grids),文本框(text boxes),按钮(buttons), 甚至可嵌入的web浏览器。
  内容提供器(Content Providers)使得应用程序可以访问另一个应用程序的数据(如联系人数据库), 或者共享它们自己的数据
  资源管理器(Resource Manager)提供 非代码资源的访问,如本地字符串,图形,和布局文件( layout files )。
  通知管理器 (Notification Manager) 使得应用程序可以在状态栏中显示自定义的提示信息。
  活动管理器( Activity Manager) 用来管理应用程序生命周期并提供常用的导航回退功能。
发表评论
用户名: 匿名