typescript数组中包含有循环引用的对象,要怎么去掉那些重复的对象呢?

如题,在网上看了好多去重的方法,但是都不适合我这种情况,求解!谢谢!

慕娘9325324
浏览 1635回答 1
1回答

www说

你所谓的循环引用的对象,具体是个什么样子?常规的数组去重,我就array转set,在转回array。写起来简单,性能好不好不太清楚class Greeter {     greeting: string;    constructor(message: string) {        this.greeting = message;     }     greet() {        return "Hello, " + this.greeting;     } }const a = new Greeter('1');const b = new Greeter('2');const c = new Greeter('3');const myArr = [a, a, a, a, b, c, c, c, b, c, c, b, b, b, b, c, c, a, a, a, a];const mySet = new Set(myArr);const finalArr = Array.from(mySet);console.log(finalArr)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript