Andrei Picusnighttrax.dev·Apr 25, 2024FeaturedTypeScript Thursday - S01E04 - Function overloadsAn overloaded function can be called in more than 1 way with different types of arguments, or with a different number of arguments. Each version of the function can also have a different return type. You can find many overloaded methods in the DOM an...37 likes·720 readsTypeScript ThursdayTypeScript
Ronil Rodriguesronilrodrigues.hashnode.dev·Sep 21, 2023Exploring Function Overloading and Overriding in JavaJava, as an Object-Oriented Programming (OOP) language, supports powerful features like function overloading and overriding. These techniques provide flexibility and modularity in code design. In this blog post, we'll delve into the concepts of funct...Function Overloading
Arpitha Rajeevarpitha-rajeev.hashnode.dev·Aug 10, 2023Core Python: Part 5Check out the previous part: Core Python: Part 4 We have procedural and object-oriented as two categories in structured programming. The functions used in programs are procedural in nature that do not hold their own data or remember their state but a...32 readsCore PythonOOPS
Kralhexkralhex.hashnode.dev·Jul 26, 2023Method Overloading and Method Overriding in PythonIntroduction Python, being an object-oriented programming language, offers powerful features to support inheritance, one of which includes method overloading and method overriding. These concepts allow developers to create more flexible and maintaina...1 likeCoding PythonPython
Favour Ajayefavourajaye.hashnode.dev·May 20, 2023Solidity fallback function and function overloadingFallback function In Solidity, the fallback function is a special function that is executed when a contract receives a message that doesn't match any of its defined functions. It is defined without a name, using the fallback keyword. From solidity do...20 likes·64 readsSolidity
Iman Roustairousta.hashnode.dev·Mar 28, 2023Function Overloading in TypeScriptFunction overloading in TypeScript is the ability of a function to be defined with multiple signatures, each defining the number and types of parameters and the return type. When a function is called, the TypeScript compiler will check each of the de...220 readsTypeScript
Rohan Kotkarrohan4650.hashnode.dev·Feb 19, 2023Function Overloading VS Function OverridingFunction overloading and function overriding are two important concepts in C++ that allow us to write more flexible and modular code. Although they share similarities in the name and the fact that they involve multiple functions with the same name, t...C++