比较长的java代码 java数组长度

求java代码300行左右,要有注释,能运行,基础点的越基础的越好,300行以上就好,不要太长的300行能干啥?。?你还不如自己做做练习题 。
package suoha;
import java.util.ArrayList;import java.util.Random;
public class MainFunction {
private ArrayListMyCard cards = new ArrayListMyCard();
private int[] cardNumArr = new int[52];
private int[] mycards = new int[5];
private int[] p1cards = new int[5];
public static void main(String[] args) {
MainFunction mainfunc = new MainFunction();
mainfunc.makeCards();
mainfunc.cardNumArr = mainfunc.shuffleCards(mainfunc.cardNumArr);
mainfunc.catchCards();
mainfunc.showAllCardsOfHand();
//mainfunc.printNums();
}
/**
* 洗牌
* @param cardNums
* @return
*/
private int[] shuffleCards(int[] cardNums){
int size = cardNums.length;
int[] returnNums = new int[size];
//System.out.println(cardNums[0] "=========================");
Random rand = new Random();
for(int i=size-1;i0;i--){
int nextInt = rand.nextInt(i);
returnNums[size-1-i] = cardNums[nextInt];
cardNums[nextInt] = cardNums[i];
cardNums[i] = returnNums[size-1-i];
//System.out.println("suijishu:" nextInt "||zhi:" returnNums[size-1-i]);
}
returnNums[size-1] = cardNums[0];
return returnNums;
}
/**
* 抓牌
*/
private void catchCards(){
for(int i=0;i5;i){
mycards[i] = cardNumArr[2*i];
p1cards[i] = cardNumArr[2*i 1];
}
}
private void showAllCardsOfHand(){
System.out.print("你手中的牌是:||");
for(int i=0;i5;i){
MyCard myCard = cards.get(mycards[i]-1);
System.out.print(myCard.toString() "||");
}
System.out.println();
System.out.print("对家手中的牌是:||");
for(int i=0;i5;i){
MyCard myCard = cards.get(p1cards[i]-1);
System.out.print(myCard.toString() "||");
}
}
/**
* 显示牌的顺序
*/
private void printNums(){
for(int i=0;icardNumArr.length;i){
System.out.print(cardNumArr[i] ",");
}
}
/**
* 制作卡片
*/
private void makeCards(){
for(int i=1;i=13;i){
for(int j=1;j=4;j){
//System.out.println((i-1)*4 j);
MyCard card = new MyCard((i-1)*4 j, j, i);
cardNumArr[(i-1)*4 j-1] = (i-1)*4 j;
cards.add(card);
}
//MyCard card1 = new MyCard((i-1)*4 1, 1, i);
//MyCard card2 = new MyCard((i-1)*4 2, 2, i);
//MyCard card3 = new MyCard((i-1)*4 3, 3, i);
//MyCard card4 = new MyCard((i-1)*4 4, 4, i);
//cards.add(card1);
//cards.add(card2);
//cards.add(card3);
//cards.add(card4);
}
}
}
一段比较长java的代码,高手帮我解决几个问题1.GroupLayout layout=new GroupLayout(c);
创建一个GroupLayout的对象,同时创建时需要以一个Container的对象作为参数
2 layout.setAutoCreateContainerGaps(true);
setAutoCreateContainerGaps(boolean)是用来设置是否应该自动创建容器与触到容器边框的组件之间的间隙 , 参数是一个boolean值 , true代表是,false代表否 。
3. GroupLayout.ParallelGroup hpg2a=layout.createParallelGroup(GroupLayout.Alignment.LEADING);
ParallelGroup 是GroupLayout的一个内部类,所以要创建他的实例必须是这样的:GroupLayout.ParallelGroup
createParallelGroup(GroupLayout.Alignment alignment)方法使用 Alignment.LEADING 的对齐方式创建并返回一个 ParallelGroup,Alignment.LEADING是GroupLayout的一个field,在这里以这个作为参数 。这句话就是一个简单的语句,不能再简单里,你看里面虽然有很多点,但其实只有一个层次就相当于 A a = b.c(o);
4. hpg2a.addComponent(cb2);
将 Component 对象作为参数添加到此 Group 。就是给GroupLayout.ParallelGroup添加一个cb2组件
总结:你对api很不了解,这些东西都是在api里面可以查到的,所以你应该把api下载下来,放在自己的桌面上随时查阅,学java 的时候api文档是必不可少的工具哦,加油!
求一个50行左右的JAVA代码,最好每行带注释,谢谢啦/*这个相当详细了.
程序也不算太难.而且给老师看的时候效果比较好.因为有图形化界面,又实现一个比较实用的功能.老师会比较高兴的.
建立一个文件名为Change.java就可以编译了*/
/*
* 这个程序实现输入身高算出标准体重,输入体重,算出身高的功能
*/
import java.awt.*; //导入相关类包,这才样使用相应awt图形界面的类
import java.awt.event.*;//同上
public class Change extends Frame { //定义一个类Change, 父类是Frame(图形界面的)
Button b = new Button("互查"); //创建一个按钮的对象b,显示为"互查"
Label l1 = new Label("身高(cm)");//创建一个lable.显示身高
Label l2 = new Label("体重(kg)");//创建一个lable 显示体重
double heigth, weigth; //定义变量
double x, y; //定义变量
TextField tf1 = new TextField(null, 10);//添加Text框
TextField tf2 = new TextField(null, 10);//添加Text框
public Change() {//类的构造函数,完成初始化
super("互查表");//创建窗口,标题为互查表
setLayout(new FlowLayout(FlowLayout.LEFT));//设置布局
add(l1);//把lable 身高放到window里
add(tf1);//把Text 框 放到窗口上
add(l2); //把lable 体重放到window里
add(tf2);//Test放到窗口里
add(b);//把button放到窗口上
pack();//自动放到窗口里排列上边的组件
setVisible(true);//可以让用户看到窗口
addWindowListener(new WindowAdapter() {//如果按 X, 关闭窗口
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
b.addActionListener(new ButtonListener());//添加button监听函数
}
class ButtonListener implements ActionListener {//实现click button时功能操作
public void actionPerformed(ActionEvent e) {//当click调用
if (tf1.getText()!=null) {//检查tf1 test 是否为空
try {//取异常
x = Double.parseDouble(tf1.getText());//字符转为double型
weigth = (x - 100) * 0.9;//算重量
tf2.setText(""weigth);//显示重量
} catch (NumberFormatException ex) {
tf1.setText("");//如果输入不是数字,设为空
}
}
if (tf1.getText().equals("")==true){//tf1是否为空
y = Double.parseDouble(tf2.getText());//把tf2里的文本转为double 型 的
heigth = y / 0.9100;//算身高根据重量
tf1.setText(""heigth);}//显示身高
}
}
public static void main(String[] args) {//主函数,程序入口
new Change(); //建立类Change的对象,并调用他的构造函数Change().显示窗口
}
}
JAVA的一行代码太长,怎么换行按回车即可比较长的java代码 , 有的编辑器会帮比较长的java代码你加相关的引号 。一般在逗号之后或者括号之前
在MyEcjava里java代码太长,在代码里写些什么关键词可把代码收起来?这个 。。。java现在还没那么先进 , 你把一行拆成两行不行吗
还是那句话,没有什么关键词可以使当前语句自动收缩,那是IDE干的活 。。。
如果你怕别人无意修改代码 , 那么多写几个类,用继承和重构的方法来减少一个类里的代码量
JAVA题 。通过键盘输入两个字符串 , 比较长度按照你的要求,比较长度的Java程序如下:
import java.util.Scanner;
public class D {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("请输入第一个字符串:");
String s1=sc.nextLine();
System.out.println("请输入第二个字符串:");
String s2=sc.nextLine();
if(s1.length()s2.length()){
System.out.println(s1);
}else if(s1.length()s2.length()){
System.out.println(s2);
}else{
if(s1.charAt(0)s2.charAt(0)){
System.out.println(s1);
}else if(s1.charAt(0)s2.charAt(0)){
System.out.println(s2);
}else
System.out.println(s1);
}
}
}
【比较长的java代码 java数组长度】比较长的java代码的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于java数组长度、比较长的java代码的信息别忘了在本站进行查找喔 。

    推荐阅读