他の言語をある程度知っている人はこれを読めばD言語の基礎をマスターでき,D言語の氷山の一角くらいは知ることができると思います.対象バージョンはdmd 2.059です.
ASCIIかUTFしか受け付けません.それ以外の文字コードで書くとコンパイルエラーになります.
D言語のmainはCとは違い以下のようなシグネチャです.
| import android.content.Context; | |
| import android.support.v7.widget.RecyclerView; | |
| import android.util.AttributeSet; | |
| import android.view.View; | |
| import org.jetbrains.annotations.NotNull; | |
| import org.jetbrains.annotations.Nullable; | |
| public class EmptyRecyclerView extends RecyclerView { | |
| @Nullable View emptyView; |
| // By Jamie Chapman, @chappers57 | |
| // License: open, do as you wish, just don't blame me if stuff breaks ;-) | |
| public class ParseProxyObject implements Serializable { | |
| private static final long serialVersionUID = 1L; | |
| private HashMap<String, Object> values = new HashMap<String, Object>(); | |
| public HashMap<String, Object> getValues() { | |
| return values; |