我有类似的代码,如
public static LongWrittingType types = new LongWrittingType();
很长。重复类型LongWrittingType
。对此有何简短的写作?
答案 0 :(得分:4)
如果你所说的类名很长,你可以使用声明来缩短它。
myApp.controller('usersController', function($scope, $timeout) {
index.search('john', function searchDone(err, content) {
$timeout(function() {
$scope.users.push(content.hits);
});
});
});
然后在该文件中,您可以像下面的示例一样使用它。
eol
基本上,这为类名分配了一个别名。