Java基础方法学习笔记1.0

1.多次进行输入

  while (sc.hasNext()) {
}

在输入栏中可以输入多个输入,每个输入用空格隔开

2.substring() 方法返回字符串的子字符串

public String substring(int beginIndex)
或
public String substring(int beginIndex, int endIndex)

参数
beginIndex – 起始索引(包括), 索引从 0 开始。

  endIndex -- 结束索引(不包括)

示例

  public class Test {
public static void main(String args[]) {
    String Str = new String("www.runoob.com");

    System.out.print("返回值 :" );
    System.out.println(Str.substring(4) );

    System.out.print("返回值 :" );
    System.out.println(Str.substring(4, 10) );
}}

运行结果

         返回值 :runoob.com    
         返回值 :runoob

3.java(Math.max、Math.min方法)

代码

    public int maxArea(int[] height) {
    int max = 0;
    for (int i = 0; i < height.length; i++)
        for (int j = i + 1; j < height.length; j++)
            max = Math.max(max, Math.min(height[i], height[j]) * (j - i));
    return max;
}

上面的函数中,调用了数学方法Math.max和Math.min,即分别可以取出两个数的最大最小值,在某些地方可以很明显的看到java在处理数组,字符串的优越性与代码的简洁性。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值