function ObjectService(Restangular) {
var ObjectService = {};
ObjectService.list = function () {};
ObjectService.one = function (id) {};
ObjectService.create = function (newUser) {};
ObjectService.remove = function (id) {};
return ObjectService;
}
function ObjectListController(ObjectService) {
var self = this;
self.objects = [];
self.getObjects = function () {
ObjectService.list().then(function (response) {
self.objects = response;
}, function (error) {
});
};
self.createObject = function (newObject) {
ObjectService.create(newObject).then(function (response) {
self.objects.push(response);
}, function (error) {
});
};
}
Why does the way that memory is managed on the standard Java platform mean that Java is not usually used for operating systems development and, in particular, is not used for real time systems development?
Собственно потому я и сделал предположение, что вина всему невозможность динамического выделения памяти (в отличии от C, например) ну и нагромождения в виде виртуальной машины (которая должна запускаться каким-то образом сама?).