What is the translation of " STRING OBJECT " in Vietnamese?

[striŋ 'ɒbdʒikt]
Noun
[striŋ 'ɒbdʒikt]
đối tượng string
string object
string object
đối tượng chuỗi
string object
stringobject
string object

Examples of using String object in English and their translations into Vietnamese

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
The String object lets you work with a series of characters;
Đối tượng String giúp bạn làm việc với một dãy các ký tự;
Need to understand memory usage of String object[duplicate].
Cần hiểu cách sử dụng bộ nhớ của đối tượng String[ trùng lặp].
This creates a String object with the name my_str and gives it a value of"This is my string.".
Tạo một String object với tên my str và gán giá trị cho nó là“ This is my string”.
The second type ofstring used in Arduino programming is the String Object.
Loại thứ hai của stringdùng trong ngôn ngữ Arduino là String Object.
In this example, Python only created one string object, and both a and b refer to it.
Ở ví d này,Python chỉ tạo ra một đối tượng chuỗi, và cả a và b đều tham chiếu đến nó.
If we would like, instead of printing outthe card, we could return it as a String object.
Nếu chúng ta muốn, thay vì in ra thẻ,chúng ta có thể trả về nó như một đối tượng String.
A String object concatenation operation always creates a newobject from the existing string and the new data.
Một hoạt động nối đối tượng String luôn tạo một đối tượng mới từ chuỗi hiện có và dữ liệu mới.
So you should use String Literal instead of String Object at any possible time.
Vì vậy bạn nênsử dụng String Literal thay vì String Object bất cứ lúc nào có thể.
Note that we pass the parameter that by value,so that has to be initialized just like any other string object.
Lưu ý rằng chúng tôi chuyển thông số that theo giátrị, vì thế that phải được khởi tạo giống như bất kỳ đối tượng chuỗi nào khác.
Just like other objects, you can create a String object by using the new keyword and a constructor.
Cũng giống như các đối tượng khác, bạn có thể tạo ra các đối tượng String bằng cách sử dụng từ khóa new và 1 phương thức khởi tạo.
For example,the following code creates the string literal s1 and also the String object s2.
Ví dụ, mãnguồn sau đây tạo ra một chuỗi chữ s1 và cũng tạo ra đối tượng String.
Firstly JVM will not find any string object with the value"Helloworld" in string constant pool so it will create a new object..
Đầu tiên JVM sẽ không tìm thấy bất cứ đối tượng String nào với giá trị“ xinchao” trong Pool, vì thế nó sẽ tạo một đối tượng mới.
Note that we are storing the next line in another object: the String object.
Lưu ý rằng ta đang lưu trữ dòng tiếp theo ở một đối tượng khác: đối tượng Chuỗi ký tự.
The result is true if and only if the argument is not null andis a String object that represents the same sequence of characters as this object..
Kết quả là true nếu và chỉ nếu tham số là không null vàlà một đối tượng String mà biểu diễn cùng dãy ký tự như đối tượng này.
You should usestring literals unless you specifically need to use a String object.
Bạn nên sử dụngcác string literals đơn thuần nếu không cần thiết phải sử dụng đến String object.
The String object can try to write to memory that does not exist when it runs out of memory, but will never write over the end of the string that it is operating on.
StringObject có thể cố gắng viết vào vùng nhớ không tồn tại khi nó hết bộ nhớ, nhưng sẽ không bao giờ viết ra ngoài điểm cuối của string khi thao tác trên nó.
The following sketchand explanation will make it clear what an object is and how the String object is used.
Sketch sau vànhững giải thích sẽ làm rõ object là gì và String object được dùng như thế nào.
When the intern method is invoked,if the pool already contains a string equal to this String object as determined by the equals(Object) method, then the string from the pool is returned.
Khi phương thức intern được gọi,nếu Pool đã chứa một chuỗi bằng với đối tượng String như khi được xác định bởi phương thức equals( object), thì chuỗi từ Pool được trả về.
One accessor method that you can use with strings is the length() method,which returns the number of characters contained in the string object.
Một phương thức truy xuất mà bạn có thể sử dụng với chuỗi là phương thức length(),trả về số ký tự chứa trong đối tượng chuỗi.
Whenever it encounters a string literal in your code,the compiler creates a String object with its value in this case,"Hello world!'.
Bất cứ khi nào nó gặp chuỗi chữ trong mã,trình biên dịch tạo ra đối tượng String với giá trị trong trường hợp này," Hello world!".
The main disadvantage of using the String object is that it uses a lot of memory and can quickly use up the Arduinos RAM memory, which may cause Arduino to hang, crash or behave unexpectedly.
Yếu điểm lớn nhất của StringObject là nó sử dụng quá nhiều tài nguyên memory và có thể đầy Arduio RAM một cách nhanh chóng, có thể gây treo Arduino, crash hoặc sinh ra nhưng hành vi không mong muốn.
The String class is immutable,so that once it is created a String object cannot be changed.
Một lớp String là không thể biến đổi,để mà một khi nó đã được tạo, một đối tượng String không thể bị biến đổi.
As JavaScript automatically converts between string primitives and String objects,you can call any of the helper methods of the String object on a string primitive.
Vì JavaScript tự động chuyển đổi giữa các chuỗi nguyên thủy string và các đối tượng String, nên bạn có thể gọi bấtkỳ phương thức trợ giúp nào của đối tượng String khi sử dụng chuỗi nguyên thủy string..
Whenever Java compiler encounters a string literal in the code,it creates a String object with its value.
Bất cứ khi nào trình biên dịch Java gặp một chuỗi ký tự trong code,nó sẽ tạo ra một đối tượng String với giá trị của nó.
Strings are objects,so you might ask“What is the data contained in a String object?” and“What are the methods we can invoke on String objects?”.
String( chuỗi kí tự) làcác đối tượng, bởi vậy bạn có thể hỏi“ Có dữ liệu nào được chứa trong một đối tượng String?” và“ Có những phương thức nào mà ta có thể kích hoạt được từ đối tượng String?”.
The String class has an equivalent class method, format(),that returns a String object rather than a PrintStream object..
Lớp String có một phương thức lớp tương đương, là format(),mà trả về một đối tượng String chứ không là một đối tượng PrintStream.
Note that the result will be true if the argument is the empty string oris equal to this String object as determined by the equals(Object) method.
Chú ý rằng, kết quả sẽ là true nếu tham số là chuỗi trống hoặccân bằng với đối tượng String này như được xác định trong phương thức equals( Object) trong Java.
Instead of extracting numeric values directly from the standard input,we get lines from the standard input(cin) into a string object(mystr), and then we extract the integer values from this string into a variable of type int(quantity).
Thay vì trích xuất các giá trị số trực tiếp từ đầu vào tiêuchuẩn, chúng tôi nhận được các dòng từ đầu vào chuẩn( cin) vào string object( mystr), và sau đó chúng tôi trích xuất các giá trị số nguyên từ chuỗi này thành một biến kiểu int( số lượng).".
Results: 28, Time: 0.0351

Word-for-word translation

Top dictionary queries

English - Vietnamese