Posts Tagged Implementare
How to: Implement Interfaces in VB.NET
Posted by marius.popa in Uncategorized on March 23, 2010
Implementing an interface in VB.NET is done by specification Implements. Interfaces can be implemented by classes [...] and structures [...]. A class or structure can implement one or more interfaces, separated by the operator , in VB.NET.
List of interfaces implemented by class/structure is given by their associated names at defining time [...].
Read the rest of this entry »
How to: Implement Sparse Matrix Data Structure in C++ Using Array
Posted by marius.popa in C++, Data Structures on November 2, 2009
The sparse matrix represents a special type of two-dimensional array consisting of a large number of elements from out of which a very high proportion is occupied by null elements. Thus, the classical declaration of a two-dimensional array in the C++ programming language leads to unnecessary use of memory by storing null values and of the processing capacity.
Read the rest of this entry »
Implementarea structurii de date Matrice Rara in C++ utilizand masive de date
Posted by marius.popa in C++, Data Structures on October 30, 2009
Matricea rara reprezinta in tip special de masiv dimensional format dintr-un numar foarte mare de elemente din care o pondere foarte mare o ocupa elementele nule. Astfel, declararea clasica a unui masiv bidimensional in limbajul C++ conduce la utilizarea inutila a memoriei prin stocarea valorilor nule si a capacitatii de procesare.
Read the rest of this entry »
Implementarea interfetelor in VB.NET
Posted by marius.popa in VB.NET on June 16, 2009
Implementarea unei interfete in limbajul VB.NET se realizeaza prin cuvantul rezervat Implements. Interfetele pot fi implementate de catre clase de obiecte [...] si structuri [...]. O clasa de obiecte sau o structura pot implementa una sau mai multe interfete, separate prin operatorul , in VB.NET.
Lista de interfete implementate de clasa de obiecte/structura este data prin denumirile asociate acestora la definire [...].
Read the rest of this entry »

in romanian
in english