Nikitha N has Published 76 Articles

What does the restrict keyword mean in C++?

Nikitha N

Nikitha N

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

1K+ Views

There's no such keyword in C++. List of C++ keywords can be found in section 2.11/1 of C++ language standard. restrict is a keyword in the C99 version of C language and not in C++.In C, A restrict-qualified pointer (or reference) is basically a promise to the compiler that for ... Read More

What does the method add(E element) do in java?

Nikitha N

Nikitha N

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

281 Views

The add(E e) method of the java.util.ArrayList class appends the specified element E to the end of the list.Example:import java.util.ArrayList; public class ArrayListDemo {    public static void main(String[] args) {       ArrayList arrlist = new ArrayList(5);       arrlist.add(15);       arrlist.add(20);       arrlist.add(25); ... Read More

How to synchronize an ArrayList in Java?

Nikitha N

Nikitha N

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

165 Views

The synchronizedList(List list) method of the Collections class accepts a List object and returns a synchronized list backed by the specified list.Example:import java.util.ArrayList; import java.util.Collections; import java.util.LinkedHashSet; import java.util.Set; public class ArrayListSample {    public static void main(String[] args){       ArrayList list = new ArrayList();       ... Read More

How to convert a list collection into a dictionary in Java?

Nikitha N

Nikitha N

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

1K+ Views

Following is an example to convert a list collection into a dictionary in Java.Example Live Demoimport java.util.ArrayList; import java.util.Dictionary; import java.util.Hashtable; public class CollectionDictionary {    public static void main(String[] args) {       ArrayList list = new ArrayList();       list.add("JavaFx");       list.add("Java");     ... Read More

Error while creating a PO in SAP system from a .NET application

Nikitha N

Nikitha N

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

150 Views

Below is the correct sequence to invoke Function Module for automatic OP generation:ME_REFRESH_PO onceME_CREATE_PO_HEADER onceME_CREATE_PO_ITEM n timesME_POST_PO onceIn case you don’t follow this sequence, it may result in data inconsistencies.

Customizing SAP ERP industry specific

Nikitha N

Nikitha N

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

238 Views

SAP provides a lot of offerings which are industry specifics and can be altered/ modified within limits to serve the purpose. Offerings include industries ranging from Sales, HR, Plant maintenance and others. One can customize the existing system to serve the needs but the customization is not extensive and basically ... Read More

Previous 1 ... 4 5 6 7 8
Advertisements