课后作业01、02
课后作业01:字串加密
1、设计思想
先输入一个字符串,将其拆分成单个字符,然后在对每个字符进行加密,再将字符连接成字符串,然后输出。
2、程序流程图
3、源代码
package dd;
import javax.swing.JOptionPane;
public class Dd
{
public static void main(String[] args)
{
String input=JOptionPane.showInputDialog("请输入要加密的字符串");
int l;//字符串长度
l=input.length();
String s1=new String();//创建新的对象
String s2=new String();//创建新的对象
char c;//定义一个char变量
int i;//定义一个int变量
for(int x=0;x<l;x++)
{
s1=input.substring(x, x+1);
c=s1.charAt(0);//将字符串转换成char
i=c+3;//向后移3
c=(char)i;
s2+=c;
}
String output="加密后的字串"+s2;
JOptionPane.showConfirmDialog(null,output);
}
}
4、结果截图
课后作业2:动手动脑
1、请运行以下示例代码StringPool.java,查看其输出结果。如何解释这样的输出结果?从中你能总结出什么?
结果截图:
答:在Java中,内容相同的字串常量(“Hello”)只保存一份以节约内存,所以s0,s1,s2实际上引用的是同一个对象。
编译器在编译s2一句时,会去掉“+”号,直接把两个字串连接起来得一个字串(“Hello”)。这种优化工作由Java编译器自动完成。
当直接使用new关键字创建字符串对象时,虽然值一致(都是“Hello”),但仍然是两个独立的对象。
2、再看以下代码,为什么会有上述的输出结果?从中你又能总结出什么?
结果截图:
答:给字串变量赋值意味着:两个变量(s1,s2)现在引用同一个字符串对象“a”!
String对象的内容是只读的,使用“+”修改s1变量的值,实际上是得到了一个新的字符串对象,其内容为“ab”,它与原先s1所引用的对象”a”无关,所以,s1==s2返回false;
代码中的“ab”字符串是一个常量,它所引用的字符串与s1所引用的“ab”对象无关。
String.equals()方法可以比较两个字符串的内容。
3、请查看String.equals()方法的实现代码,注意学习其实现方法。
public class StringEquals {
public static void main(String[] args) {
String s1=new String("Hello");
String s2=new String("Hello”);
System.out.println(s1==s2);
System.out.println(s1.equals(s2));
String s3="Hello";
String s4="Hello";
System.out.println(s3==s4);
System.out.println(s3.equals(s4));
}
}
实现方法:首先s1和s2分别开辟了一个新地址,直接比较的是存储位置,所以s1不等于s2,s3和s4是同一地址,所以相等,而equals是实现内容比较,所以s1和s2相等,s3和s4相等。
4、String类的Length()、charAt()、 getChars()、replace()、 toUpperCase()、 toLowerCase()、trim()、toCharArray()使用说明。
public class Dbsacregr {
public static void main(String[] args) {
length():public int length()//求字符串长度
String s=”dwfsdfwfsadf”;
System.out.println(s.length());
charAt():public charAt(int index)//index 是字符下标,返回字符串中指定位置的字符
String s=”Hello”;
System.out.println(s.charAt(3));
getChars():public int getChars()//将字符从此字符串复制到目标字符数组
String str = "abcdefghikl";
Char[] ch = new char[8];
str.getChars(2,5,ch,0);
replace():public int replace()//替换字符串
String s=”\\\”;
System.out.println(s.replace(“\\\”,”///”));
结果///;
toUpperase():public String toUpperCase()//将字符串全部转换成大写
System.out.println(new String(“hello”).toUpperCase());
toLowerCse():public String toLowerCase()//将字符串全部转换成小写
System.out.println(new String(“HELLO”).toLowerCase());
trim():public String trim()
String x=”ax c”;
System.out.println(x.trim());//是去两边空格的方法
toCharArray(): String x=new String(“abcd”);// 将字符串对象中的字符转换为一个字符数组
char myChar[]=x.toCharArray();
System.out.println(“myChar[1]”+myChar[1])
}
}