共用方式為


array::operator= 運算子

複製指定之 array 物件的內容。

array & operator= (
   const array & _Other
) restrict(cpu);

array & operator= (
   array && _Other
) restrict(cpu);

array& operator=(
   const array_view<const _Value_type, _Rank>& _Src
) restrict(cpu);

參數

  • _Other
    要從中複製的 array 物件。

  • _Src
    要從中複製的 array 物件。

傳回值

array 物件的參考。

多載清單

名稱

描述

array & operator= ( const array & _Other ) restrict(cpu);

使用深層複本,將指定之陣列物件的內容複製到這個物件。

array & operator= ( array && Other ) restrict(cpu);

使用移動指派,將指定之陣列物件的內容複製到這個物件。

array& operator=( const array_view<const _Value_type, _Rank>& Src ) restrict(cpu);

array 物件複製到 array_view 物件中。

需求

**標頭:**amp.h

**命名空間:**並行

請參閱

參考

array 類別