IHash<TKey,TValue>.max_load_factor Metodo

Definizione

Ottiene o imposta il numero massimo di elementi per bucket nella tabella di hash.

Overload

max_load_factor()

Ottiene il numero massimo di elementi per bucket nella tabella di hash.

max_load_factor(Single)

Imposta il numero massimo di elementi per bucket nella tabella di hash.

Commenti

Per altre informazioni, vedere hash_map::max_load_factor (STL/CLR) hash_multimap::max_load_factor (STL/CLR), hash_set::max_load_factor (STL/CLR) e hash_multiset::max_load_factor (STL/CLR).

max_load_factor()

Ottiene il numero massimo di elementi per bucket nella tabella di hash.

public:
 float max_load_factor();
public float max_load_factor ();
abstract member max_load_factor : unit -> single
Public Function max_load_factor () As Single

Restituisce

Numero massimo di elementi per bucket nella tabella hash.

Commenti

Per altre informazioni, vedere hash_map::max_load_factor (STL/CLR) hash_multimap::max_load_factor (STL/CLR), hash_set::max_load_factor (STL/CLR) e hash_multiset::max_load_factor (STL/CLR).

Si applica a

max_load_factor(Single)

Imposta il numero massimo di elementi per bucket nella tabella di hash.

public:
 void max_load_factor(float _Newmax);
public void max_load_factor (float _Newmax);
abstract member max_load_factor : single -> unit
Public Sub max_load_factor (_Newmax As Single)

Parametri

_Newmax
Single

Numero massimo di elementi per bucket nella tabella hash.

Commenti

Per altre informazioni, vedere hash_map::max_load_factor (STL/CLR) hash_multimap::max_load_factor (STL/CLR), hash_set::max_load_factor (STL/CLR) e hash_multiset::max_load_factor (STL/CLR).

Si applica a