In this article we view three key (and interrelated) topics that make it all possible: the CLR, CTS, and CLS . Common Language Runtime From a programmer’s point of view, .NET can be understood as a runtime environment and a comprehensive base class library. The runtime layer is properly referred to as the Common Language Runtime , or CLR. The primary role of the CLR is to locate, load, and manage .NET objects on your behalf. The CLR also takes care of a number of low-level details such as memory management, application hosting, coordinating threads, and performing basic security checks (among other low-level details). Common Type System Another building block of the .NET platform is the Common Type System , or CTS. The CTS specification fully describes all possible data types and all programming constructs supported by the runtime, specifies how these entities can interact with each other, and details how they are represented in the .NET metadata format. Common Languag...
In this article we will learn about OOP ( Object oriented programing ) concepts. If you want to learn further lessons about objects, classes, inheritance, polymorphism, how objects interact with each other then you must read these lesson carefully. There are total 7 core OOPs concepts. 1. Abstraction Abstraction is the concept of hiding the internal details and describing things in simple terms. For example, a method that adds two integers. The method internal processing is hidden from outer world. There are many ways to achieve abstraction in object oriented programming, such as encapsulation and inheritance. A java program is also a great example of abstraction. Here java takes care of converting simple statements to machine language and hides the inner implementation details from outer world. 2. Encapsulation Encapsulation is the technique used to implement abstraction in object oriented programming. Encapsulation is used for access restriction ...
1. Download JDK from http://www.oracle.com/technetwork/java/javase/downloads/index.html 2. Install the JDK. 3. Go to path C:\Program Files (x86)\Java\jdk1.8.0_131\bin in your PC and copy it. 4. Now go to control panel 5. Click on system 6. Click on advance system settings 7. Click on environment variables 8. Click on new and name it as path and copy path which is in your pc as shown above in red colour 9. Click on OK 10. Now open CMD and type javac and press enter if it shows messy long list then congratulation java is installed in your PC. 11. Now go to next article for Hell...
Comments
Post a Comment