Calculate a value for a new entry in a map.
import public
|
The computeIfAbsent() method calculates a value for a new entry based on its key. If an entry with the specified key already exists and its value is not null, the map remains unchanged.
The value is computed using a function, which can be defined by a lambda expression compatible with the apply() method of Java’s Function interface.
public |
K represents the data type of the map’s keys.
Parameter |
Description |
key |
Required: Specifies the key for the entry. |
function |
Required: A Function object or lambda expression that computes the value of the entry. The function takes one parameter, which is the key of the entry. |
Returns: |
If an entry with the specified key already exists, it returns the value of that entry; otherwise, it returns the value computed by the function. |