How to use JEDI TJCLHashMap classes?

I am trying to use the TJCLHashMap family of classes, but apparently this class has no useful public methods. All methods are "protected." How to use this class? Although the JCL comes with some samples, I seem to be missing something. A basic example would be great.

+3
source share
2 answers

You must use the interfaces declared in JclContainerIntf.pas. Classes in JclHashMaps implement these interfaces.
Take a look at jcl \ examples \ common \ container \ hashing \ HashingExample.dpr for a few examples (integer, strings, objects, etc.).

+4
source

, ?

0

Source: https://habr.com/ru/post/1698881/


All Articles