ここに説明コードがあります。言語はJavaで、コードはAndroidを使用します。接尾辞 'f'はJavaコードで何を意味しますか?
fg.setTextSize(height*0.50f); //<-'f' is in the brackets
または
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
sWidth = w/3f; // <-'f' is here
}
接尾辞 'F' とは何を意味するのでしょうか?
[数値リテラルの末尾にあるFとDはどういう意味ですか?](http://stackoverflow.com/questions/4331200/what-do-f-and-d-mean-at-the-数値リテラルの終わり) – Ivar