JAVAプログラム in English translation

java program
javaプログラムを
java programming
javaプログラミング
javaプログラム
javaプログラミング
javaプログラマ
java programs
javaプログラムを

Examples of using Javaプログラム in Japanese and their translations into English

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
を使ってJavaプログラム内で100種類もの潜在的なエラーを検査する。
It uses static analysis to identify hundreds of different potential types of errors in Java programs.
コマンドライン、COMインターフェース、Javaプログラム、そして。
It can be used from the command line, via a COM interface, in Java programs, and in..
Javaプログラム(.JARファイル)をダウンロードするためのリモートアドレスと、JREを使用して実行するための初期クラスに関するデータをXML形式で保存します。
It stores data in XML format regarding the remote address for downloading the Java program(. JAR file) and the initial class for running it using the JRE.
オブジェクト指向:Javaプログラムの大部分は、クラスインスタンス、つまり状態(フィールド)と振る舞い(データを操作し、オブジェクトのインタフェースを外部世界に形成するメソッド)です。
Object-oriented: most things in a Java program are class instances, i.e. bundles of state(fields) and behavior(methods which operate on data and form the object's interface to the outside world).
その論文の枠組み内で,Javaプログラム言語のバイナリは,(インスタンス変数の追加に関するある条件付きで)論文の著者が識別するすべての意味のある変換のもとでのバイナリ互換性とする。
Within the framework of that paper, Java programming language binaries are binary compatible under all relevant transformations that the authors identify(with some caveats with respect to the addition of instance variables).
このサービスは、ウェブ上のフリーサービスを通じて使ったり、ダウンロードしてJavaプログラムとして実行したりウェブサーバー上でJavaサーブレットとして使ったりできます。
It can be used on this free service on the web, or downloaded and used either as a java program, or as a java servlet on a Web server.
Javaプログラム言語は,他の変数はすべて自動的にデフォルト値に初期化されるが,プログラミングのエラーを隠すことを避けるために,局所変数を自動的に初期化することはない。
While all other variables are automatically initialized to a default value, the Java programming language does not automatically initialize local variables in order to avoid masking programming errors.
JNI(Javaネイティヴインターフェース)はそのような機能の一例です。JNIによってアクセスされるライブラリは、それらを呼ぶJavaプログラムと動的にリンクされています。
The JNI or Java Native Interface is an example of such a binding mechanism; libraries that are accessed in this way are linked dynamically with the Java programs that call them.
Javaプログラム言語は,C及びC++に似ているが,それらとは異なる構成をもち,C及びC++の多くのものを省いて,他の言語から少数のアイデアを取り込んでいる。
The Java programming language is related to C and C++ but is organized rather differently, with a number of aspects of C and C++ omitted and a few ideas from other languages included.
このサービスは、ウェブ上のフリーサービスを通じて使ったり、ダウンロードしてJavaプログラムとして実行したりウェブサーバー上でJavaサーブレットとして使ったりできます。
It can be used on this site, or downloaded and used either as a Java program or as a Java servlet on a Web server.
JNI(Javaネイティヴインターフェース)はそのような拡張機能の一例です。JNIによってアクセスされるライブラリは、それらを呼ぶJavaプログラムと動的にリンクされることになります。
The JNI or Java Native Interface is an example of such a facility; libraries that are accessed in this way are linked dynamically with the Java programs that call them.
Javaプログラム言語はマルチスレッド対応であるために,ある他のスレッドが,同時に同じクラス又はインタフェースの初期化を試みるかもしれないので,クラス又はインタフェースの初期化には注意深い同期を必要とする。
Because the Java programming language is multithreaded, initialization of a class or interface requires careful synchronization, since some other thread may be trying to initialize the same class or interface at the same time.
このタイプのソフトウェア設計では、常にすべてのWHERE述語が問合せに効率的に組み込まれるとは限らず、行のフィルタ処理はJavaプログラムで実行されます。
With this type of software design, queries do not always include all the WHERE predicates to be efficient, and row filtering is performed in the Java program.
KotlinはAndroidアプリ開発で公式にサポートされており、Javaプログラム言語やライブラリとの完全な相互運用が可能である他、IntelliJやAndroidStudioにも含まれている。
Kotlin is officially supported for building Android apps, fully interoperates with the Java programming language and libraries, and is included with IntelliJ and Android Studio.
C及びC++では,剰余演算子は整数的なオぺランドだけを受け入れるが,Javaプログラム言語では浮動小数点のオペランドも受け入れる。
In C and C++, the remainder operator accepts only integral operands, but in the Java programming language, it also accepts floating-point operands.
本ソフトは実際に、10年以上前に記述された40万行以上、400個程度のパッケージ数のJavaプログラムの解析に使用している。
This software is actually being used for analysis of our java application which has over 400,000 source lines and around 400 packages.
DのデザインとアニメーションサイクルはMaya上で制作し、その後、OpenGL用に、3Dオブジェクトを出力し、Javaプログラムによって、3Dカメラとスマートフォンの方向センサーや加速度センサーにリンクし、リアルタイムに3Dレンダリングを行っています。more…。
D design and animation were created on the 3D software, and all objects and animation cycle were exported and controlled by Java program. 3D camera is linked to direction sensor and acceleration sensor. We realized to real time 3D rendering on the smartphone. more….
Javaプログラム中で、Unicodeエスケープシーケンス\u000Aが、例えば、一行のコメント内に出現する場合、それは行終端子(Unicode文字000Aはラインフィード)として解釈され、したがって、次の文字はコメントの一部にはならない。
In a Java program, if the Unicode escape sequence \u000A, for example, occurs within a single-line comment, it is interpreted as a line terminator(Unicode character 000A is line feed) and therefore the next character is not part of the comment.
同社が開発したのは、「Vega」と呼ばれるJavaプログラム用のカスタムプロセッサで、これは今日最も普及しているBEASystems、IBM、Oracle、SunMicrosystemsなどの企業が提供するアプリケーションサーバソフトよりも高速にJavaプログラムを実行するためのハードウェア基盤を提供する。
The company has developed a custom processor called Vega that provides a hardware foundation for Java programs that's faster than the application server software from companies such as BEA Systems, IBM, Oracle and Sun Microsystems that's most widely used today to run Java programs.
Javaプログラムにおいては、もし、Unicodeエスケープシーケンス\u000Aが、例えば、単一行コメント内に現れる場合には、それは、行終端(Unicode文字000Aはラインフィード/改行/\n)として解釈されることになり、それゆえに次の文字はコメントの一部ではありません。
In a Java program, if the Unicode escape sequence \u000A, for example, occurs within a single-line comment, it is interpreted as a line terminator(Unicode character 000A is line feed) and therefore the next character is not part of the comment.
Results: 96, Time: 0.0313

Word-for-word translation

Top dictionary queries

Japanese - English