Technology, Science and Universe
Results for {phrase} ({results_count} of {results_count_total})
Displaying {results_count} results of {results_count_total}
i
- IntStream Description: IntStream is an interface in Java that represents a sequence of primitive int elements. This interface is part of the(...) Read more
- IdentityHashMap Description: IdentityHashMap is an implementation of the Map interface in Java that is characterized by comparing keys using reference equality(...) Read more
- IntegerCache Description: IntegerCache is a feature of Java that allows for the reuse of Integer object instances for values ranging from -128 to 127. This(...) Read more
- InheritableThreadLocal Description: InheritableThreadLocal is a subclass of ThreadLocal in Java that allows the value associated with a variable to be inherited by(...) Read more
- IntPredicate Description: IntPredicate is a functional interface in Java that represents a predicate, meaning a function that takes an int argument and(...) Read more
- InstanceofOperator Description: The 'instanceof' operator in Java is a fundamental tool that allows checking whether an object is an instance of a specific class(...) Read more
- Inline Description: Inline functions are functions defined with the 'inline' keyword that suggest to the compiler to insert the function body into the(...) Read more
- Instantiated Description: Instantiation refers to the creation of a specific instance of a class in C++. In the context of object-oriented programming, a(...) Read more
- Inheritance Hierarchy Description: The inheritance hierarchy is a structure that shows the relationship between classes in terms of inheritance. In object-oriented(...) Read more
- Integer Overflow Description: Integer overflow occurs when an arithmetic operation attempts to create a numeric value that is too high to be represented within(...) Read more
- Interface Segregation Principle Description: The Interface Segregation Principle states that no client should be forced to depend on methods it does not use. This principle is(...) Read more
- Implicit Conversion Description: Implicit conversion is the automatic conversion of data types by the compiler without explicit instruction from the programmer.(...) Read more
- Initialization List Description: An initializer list is a list of variables that are initialized when an object is created in C++. This mechanism allows assigning(...) Read more
- IEnumerable Description: IEnumerable is a fundamental interface in the C# programming language that defines a method for iterating over a collection of(...) Read more
- IEnumerator Description: IEnumerator is an interface in C# that allows simple iteration over a non-generic collection. This interface is part of the(...) Read more