From professional translators, enterprises, web pages and freely available translation repositories.
aggregated
총합된
Last Update: 2014-07-21
Usage Frequency: 1
Quality:
Reference:
aggregated catalog
집계된 카탈로그
Last Update: 2006-09-06
Usage Frequency: 1
Quality:
Reference:
the key for the main array is the name of the aggregated class.
will return the aggretaion information for a particular object as an associative array of arrays of methods and properties. the key for the main array is the name of the aggregated class.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Reference:
finally, the same way we aggregated properties and methods dynamically, we can also deaggregate them from the object.
the proccess of aggregation is cummulative, so when we aggregate $fs with the class dbstorage, generating an object that can use the storage methods of all the defined classes.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Reference:
one important thing to note is that it has not aggregated the private elements defined in the class, which are present in the $ws object.
we will now consider the output to understand some of the side-effects and limitation of object aggregation in php. first, the newly created $fs and $ws objects give the expected output (according to their respective class declaration). note that for the purposes of object aggregation, private elements of a class/object begin with an underscore character ("_"), even though there is not real distinction between public and private class/object elements in php.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Reference:
Warning: Contains invisible HTML formatting
the properties whose names start with an underscore character (_), which are considered private to the aggregated class, are always excluded.
the properties whose names start with an underscore character (_), which are considered private to the aggregated class, are always excluded.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Reference:
in fact object aggregation can be more flexible, in which we can select what methods or properties to "inherit" in the aggregated object.
object aggregation is a natural way of representing a whole-part relationship, (for example, molecules are aggregates of atoms), or can be used to obtain an effect equivalent to multiple inheritance, without having to permanently bind a subclass to two or more parent classes and their interfaces. in fact object aggregation can be more flexible, in which we can select what methods or properties to "inherit" in the aggregated object.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Reference:
Warning: Contains invisible HTML formatting
aggregates all properties defined in a class to an existing object, except for properties whose names start with an underscore character (_) which are considered private to the aggregated class.
aggregates all properties defined in a class to an existing object, except for properties whose names start with an underscore character (_) which are considered private to the aggregated class.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Reference:
aggregates all methods defined in a class to an existing object, except for the class constructor, or methods whose names start with an underscore character (_) which are considered private to the aggregated class.
aggregates all methods defined in a class to an existing object, except for the class constructor, or methods whose names start with an underscore character (_) which are considered private to the aggregated class.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Reference: