public class VideoFragment extends Fragment implements CacheListener {
...
public static Fragment build(String url, String cachePath) {
return VideoFragment_.builder()
.url(url)
.cachePath(cachePath)
.build();
}
...
}
我搜索了很多,但仍然不知道「VideoFragment_」? 有人可以給我一些要點嗎?在android編程中,類名連接下劃線的含義是什麼?
事實上,我正在研究[這個android項目](https://github.com/danikula/AndroidVideoCache/blob/master/sample/src/main/java/com/danikula/videocache/sample/VideoFragment。 java)in github –
呵呵,[今天我學會了](http://stackoverflow.com/a/9379553/1790644)。投票結束重複。 –
[連接到類名的下劃線是什麼意思?]的可能重複(http://stackoverflow.com/questions/9379536/what-does-an-underscore-concatenated-to-a-class-name-mean) –