Prabhas has Published 78 Articles

Make your collections thread-safe in C#

Prabhas

Prabhas

Updated on 30-Jul-2019 22:30:23

232 Views

The .NET Framework 4 brought the System.Collections.Concurrent namespace. This has several collection classes that are thread-safe and scalable. These collections are called concurrent collections because they can be accessed by multiple threads at a time. The following concurrent collection types use lightweight synchronization mechanisms: SpinLock, SpinWait, etc. These are new ... Read More

What are native methods in Java and where should we use them?

Prabhas

Prabhas

Updated on 30-Jul-2019 22:30:21

336 Views

Native methods are written in a different language than java and are declared as native in Java.

What is the difference between Object oriented programming and Object based programming?

Prabhas

Prabhas

Updated on 30-Jul-2019 22:30:20

13K+ Views

Many of us have a misconception that Java script is an object oriented language. But, the truth is Java Script is an Object Based Language. Object Based languages are different from Object Oriented Languages: Object Based Languages Object based languages supports the usage of object and encapsulation. They does ... Read More

How to pass import parameter values using SAP RFC class?

Prabhas

Prabhas

Updated on 30-Jul-2019 22:30:20

350 Views

Check the below link to know detail about SAPRFC class. https://github.com/sensational/php-saprfc/tree/php7https://github.com/piersharding/php-sapnwrfc

What are Javadocs and what is Javadoc tool?

Prabhas

Prabhas

Updated on 30-Jul-2019 22:30:20

163 Views

Javadocs is the documentation file for a particular library/project these documents provide information about the classes and methods of that library/project. Javadoc is a tool to generate documentation for a project. It will be found in the bin folder of the Java installation folder. Using this tool you can generate ... Read More

Are ‘this’ and ‘super’ keywords in Java?

Prabhas

Prabhas

Updated on 30-Jul-2019 22:30:20

302 Views

Yes, this and super are keywords in Java. Where ‘this’ is used as a reference of the current object and, ‘super’ is used as a reference to the superclass object.

Apply filtering on Model to fetch filtered data in ABAP

Prabhas

Prabhas

Updated on 30-Jul-2019 22:30:20

71 Views

I think a simple change can sort the problem out over here. Just replace the read call with an object notation rather than the current one which is based on position.

How to declare, define and call a method in Java?

Prabhas

Prabhas

Updated on 30-Jul-2019 22:30:20

2K+ Views

Following is the syntax to declare a method in Java. Syntax modifier return_type method_name(parameters_list){ //method body } Where, modifier − It defines the access type of the method and it is optional to use. return_type − Method may return a value. method_name − This ... Read More

Previous 1 ... 4 5 6 7 8
Advertisements