第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

數(shù)組與由該數(shù)組中的元素分配的變量之間的奇怪依賴關(guān)系

數(shù)組與由該數(shù)組中的元素分配的變量之間的奇怪依賴關(guān)系

慕絲7291255 2022-09-16 21:12:41
更改從數(shù)組的元素賦值的變量時,數(shù)組中的特定元素將隨變量而變化。但是,代碼中沒有要更改的數(shù)組。在代碼中,數(shù)組是一個對象數(shù)組,變量在函數(shù) randomCentroid(質(zhì)心)內(nèi)聲明和賦值,該函數(shù)在初始化質(zhì)心中調(diào)用。該代碼用于生成有關(guān) k 均值聚類的隨機質(zhì)心,因此代碼://Return random centroid points with coloringlet randomCentroid = (fill) => {  let r = Math.floor(Math.random()*points.length);  let centroid = points[r];  //points.splice(r, 1);  centroid.fill = fill;  return centroid;}//Gives distinct coloring to all centroid pointslet initializeCentroids = (num) => {  let allCentroids = [];  for (let i = 0; i < num; i++) {    let color = colors(i);    let centroid = randomCentroid(color);    centroid.id = 'centroid' + '-' + i;    allCentroids.push(centroid);  }  return allCentroids;}//same for const.let points = [{}, {}, {}, {}, {}],  colors = d3.scaleOrdinal(d3.schemeCategory10);initializeCentroids(3);console.log(points);安慰:索引.js:29(5) [{...}, {...}, {...}, {...}, {...}]0: {填充: “#2ca02c”, id: “質(zhì)心-2”}1: {}2: {填充: “#ff7f0e”, id: “質(zhì)心-1”}3: {填充: “#1f77b4”, id: “質(zhì)心-0”}4: {}長度: 5原型: 數(shù)組(0)如何刪除由數(shù)組分配的對象組成的變量與數(shù)組之間的依賴關(guān)系?
查看完整描述

1 回答

?
料青山看我應(yīng)如是

TA貢獻1772條經(jīng)驗 獲得超8個贊

這部分:

let centroid = points[r]

正在獲取對點數(shù)組中對象的引用

更改時,也會更改數(shù)組中的對象。centriod


查看完整回答
反對 回復 2022-09-16
  • 1 回答
  • 0 關(guān)注
  • 103 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號