RxJS - 数学运算符 Max



max() 方法将接受包含所有值的可观察对象并返回包含最大值的可观察对象。它把比较函数作为参数,此函数是可选的。

语法

max(comparer_func?: number): Observable

参数

comparer_func − (可选)。一个函数,它将筛选出要从源可观察对象中的最大值考量的值。如果不提供,则将考虑默认函数。

返回值

返回值是包含最大值的可观察对象。

示例 1

以下示例具有最大值 −

import { of } from 'rxjs';
import { max } from 'rxjs/operators';

let all_nums = of(1, 6, 15, 10, 58, 20, 40);
let final_val = all_nums.pipe(max());
final_val.subscribe(x => console.log("The Max value is "+x));

输出

The Max value is 58

示例 2

以下示例为具有比较函数的最大值 −

import { from } from 'rxjs';
import { max } from 'rxjs/operators';

let list1 = [1, 6, 15, 10, 58, 2, 40];
let final_val = from(list1).pipe(max((a,b)=>a-b));
final_val.subscribe(x => console.log("The Max value is "+x));

我们使用数组并且数组中的值使用 max 函数中给出的函数进行比较,数组中的最大值将被返回。

输出

The Max value is 58
广告