Print the contents of vectors and dictionaries
Subscribe to the Markplex YouTube channel.
When you use vectors and dictionaries in your programs you will probably want to check their contents. This EasyLanguage tutorial demonstrates how to create a method to print the contents of a vector or dictionary to a file on stored on your computer.
In order for the method to be able to ‘process’ either a vector or a dictionary the relevant method input is an Object (as opposed to Vector or Dictionary which would restrict the method to only process that specific sort of collection). As the method runs it detects whether this object is a vector or a dictionary and then processes it accordingly.
Another complexity with dictionaries and vectors is that they can include another collection (e.g. another dictionary or vector) as one of their elements. With the method described in tutorial 140, if a vector or dictionary is stored as an element of the vector or dictionary, its contents are also printed. This is achieved by calling the method recursively, a powerful feature of methods. I demonstrate this functionality in the video below.
Inputs
The tutorial program has the following input:
string FileName( “c:\Tutorial140Output.txt” ); // An external file where the information is recorded
- Creating and using methods
- Creating a method where one of the inputs could be either a vector or dictionary
- Using istype and astype
- Setting an object as a vector or dictionary
- Calling a method recursively (i.e a method that calls itself)
- Using the StreamWriter class
Download
Video explanation of Tutorial 140
Creation of the example vectors and dictionaries
// Create two example vectors (Vect and Vect2) and two example dictionaries (Dict and Dict2) Vect = New Vector; Vect.push_back( 1 ); // Integer value stored Vect.push_back( 2.0 ); // Double value stored Vect.push_back( 3 ); // Integer value stored Vect.push_back( 4.0 ); // Double value stored Vect.push_back( 5 ); // Integer value stored Vect.push_back( 6.0 ); // Double value stored Vect2 = New Vector; Vect2.push_back( "Car" ); // String stored Vect2.push_back( "Boat" ); // String stored Vect2.push_back( "Train" ); // String stored Vect2.push_back( Vect ); // Vect is stored as an element in Vect2 Vect2.push_back( 77 ); // Integer value stored Vect2.push_back( 77.7 ); // Double value stored Vect2.push_back( "Submarine" ); // String stored Dict2 = New Dictionary; Dict2.Add( "Brocolli", 1 ); // Integer value stored Dict2.Add( "Carrot", 2 ); // Integer value stored Dict2.Add( "Corn", 3 ); // Integer value stored Dict2.Add( "Pea", "Green" ); // String stored Dict2.Add( "Cauliflower", "White" ); // String stored Dict = New Dictionary; Dict.Add( "Apple", Dict2 ); // Dict2 is stored with an index value of Apple Dict.Add( "Orange", "Grove" ); // String stored Dict.Add( "Lemon", "Yes please" ); // String stored Dict.Add( "Banana", Vect2 ); // Vect2 is stored with an index value of Banana Dict.Add( "Peach", "Giant" );// String stored
Tutorial 140 creates the following text files:
Please let me know if you see any mistakes or errors or have questions.
THESE INDICATORS, SHOW ME STUDIES, STRATEGIES AND OTHER PROGRAMS HAVE BEEN INCLUDED SOLELY FOR EDUCATIONAL PURPOSES.
TO THE BEST OF MARKPLEX CORPORATION’S KNOWLEDGE, ALL OF THE INFORMATION ON THIS PAGE IS CORRECT, AND IT IS PROVIDED IN THE HOPE THAT IT WILL BE USEFUL. HOWEVER, MARKPLEX CORPORATION ASSUMES NO LIABILITY FOR ANY DAMAGES, DIRECT OR OTHERWISE, RESULTING FROM THE USE OF THIS INFORMATION AND/OR PROGRAM(S) DESCRIBED, AND NO WARRANTY IS MADE REGARDING ITS ACCURACY OR COMPLETENESS. USE OF THIS INFORMATION AND/OR PROGRAMS DESCRIBED IS AT YOUR OWN RISK.
ANY EASYLANGUAGE OR POWERLANGUAGE TRADING STRATEGIES, SIGNALS, STUDIES, INDICATORS, SHOWME STUDIES, PAINTBAR STUDIES, PROBABILITYMAP STUDIES, ACTIVITYBAR STUDIES, FUNCTIONS (AND PARTS THEREOF) AND ASSOCIATED TECHNIQUES REFERRED TO, INCLUDED IN OR ATTACHED TO THIS TUTORIAL OR PROGRAM DESCRIPTION ARE EXAMPLES ONLY, AND HAVE BEEN INCLUDED SOLELY FOR EDUCATIONAL PURPOSES. MARKPLEX CORPORATION. DOES NOT RECOMMEND THAT YOU USE ANY SUCH TRADING STRATEGIES, SIGNALS, STUDIES, INDICATORS, SHOWME STUDIES, PAINTBAR STUDIES, PROBABILITYMAP STUDIES, ACTIVITYBAR STUDIES, FUNCTIONS (OR ANY PARTS THEREOF) OR TECHNIQUES. THE USE OF ANY SUCH TRADING STRATEGIES, SIGNALS, STUDIES, INDICATORS, SHOWME STUDIES, PAINTBAR STUDIES, PROBABILITYMAP STUDIES, ACTIVITYBAR STUDIES, FUNCTIONS AND TECHNIQUES DOES NOT GUARANTEE THAT YOU WILL MAKE PROFITS, INCREASE PROFITS, OR MINIMIZE LOSSES.