如何从Method打印返回值

时间:2016-08-21 22:16:17

标签: java methods

我正在研究一种随机数方法从数组中选择一个随机元素。但是,我不知道如何从notifyDatasetChanged()方法打印返回值。这是代码。

getRandom()

2 个答案:

答案 0 :(得分:2)

直接打印返回值

System.out.println(getRandom(array));

OR

int returnValue = getRandom(array);
System.out.println(returnValue);

答案 1 :(得分:0)

不是答案(Alupotha已经给你了),但你应该优先学习循环结构。而不是:

import { Component } from '@angular/core';

@Component({
  selector: 'my-app',
  template: `


  <ul *ngFor="let x of countries">
  <li>
    <a (click)="doThis(x)" >{{x}}</a>
  </li>
</ul>

  `
})
export class AppComponent {
  constructor(){console.clear()}



  public countries:any[]= ['America','China', 'Russia', 'Germany']



  doThis(x){


    console.log('life is life in '+ x)
  }



}

您可以使用 array[0] = 2; array[1] = 3; ... array[12] = 14; 循环:

for