zoukankan      html  css  js  c++  java
  • 通过args数组获取数据

    ----------siwuxie095

       

       

       

       

       

    通过 main 方法的 args数组 可以从控制台获取一组字符串数据

       

    如:

       

    package com.siwuxie095.test;

       

    public class Test14 {

       

    //main方法中有一个参数是字符串类型的数组

    //这个数组可以接收从控制台输入的任意多的数据

    public static void main(String[] args) {

    //从控制台给这个字符串数组输入两个整数

    //需要把字符串转换成int类型数据,需要调用包装类方法

    int a=Integer.parseInt(args[0]);//第一个数组数据

    int b=Integer.parseInt(args[1]);//第二个数组数据

    System.out.println(a+"+"+b+"="+(a+b));

    System.out.println(a+"-"+b+"="+(a-b));

    System.out.println(a+"*"+b+"="+(a*b));

    System.out.println(a+"/"+b+"="+(a/b));

    }

       

    }

       

       

    Eclipse中:

       

       

       

    注意:运行时,方法与往常不同

       

    点击 Run 按钮旁边的倒三角->Run Configurations

       

       

       

    左侧栏这时还没有新创建的 Test14,需要:右键->New

       

       

       

    Test14 被添加进去

       

       

       

    右侧选择 Arguments 标签,在 Program arguments 中

    输入 10 3(中间隔一个空格),10 存储在 args[0] 中,3

    存储在 args[1] 中

       

       

       

       

    点击 Run,运行一览:

    args[0] 存储的是 10 这个字符串,并 通过 Integer.parseInt()

    转换为真正的整型变量,存放在 a 里

    同理

       

       

       

       

       

    【made by siwuxie095】

  • 相关阅读:
    小总结:fibonacci数的产生
    pick the stone game
    温故知新的错题训练:Coin game
    《博弈论的诡计》
    思维+博弈论:字符串操作
    一下午的编程思索录
    2018中国大学生程序设计竞赛
    温故知新的经典贪心题目:今年暑假不AC?
    2019-2020新学的一些东西(持续更新)
    【半平面交】JZOJ3297. 【SDOI2013】逃考
  • 原文地址:https://www.cnblogs.com/siwuxie095/p/6535794.html
Copyright © 2011-2022 走看看