answersLogoWhite

0


Best Answer

Java does not have the sizeOf() operator or any operator that gives an equivalent result.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which operator works like sizeof operator in Java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Performing Arts

What is a Call center operator?

A call center operator is a person who works for an answering service. You answer calls for doctors and dentists and the like after hours. They usually are open 24/7 so you work shift work.


What does Lady Capulet look like?

She looks exactly like the actress who is playing her in whatever production you are interested in. That's how theatre works: the characters look like the people playing them.


Who was America's greatest science teacher?

Mr.Sciami hez like the funnest teacher ever, he works in is318 in nyc


Can you develop an operating System using Java?

yes,using frames. 18. What is the strength of the operating system? The strength of the operating system lies in its capability for handling different software, hardware Configuration used for that OS. For example a new version of windows with low ram and CPU speed etc.. The operating systems registry keys and dynamic linked list (DLL). More over, kernel 32 is the heart of windows and shell scripting is the open source for Linux etc.. And the capability of self avoiding virus act from outsources. The strength of the operating system decreases if the above points are disturbed. This is provided by krishna(B.L.S.K.P/svits) Note that if you try to write an operating system in Java, you will need hardware which supports Java natively. Java does not compile down into machine-readable bytecode like most of the languages used to program operating systems. Java needs to be run on the JVM, and so the hardware must either contain a custom JVM implementation, or must contain some intermediate layer between the hardware and the OS for the JVM to live in.


What is learned of the action antecedent to this part of the play through Mary Warren?

Mary Warren totally copy writes and cheats on her homework just like you! Don't be stupid, just act like you have a brain that works...

Related questions

Which operator work like charAt in VB.NET?

The ElementAt() in VB .NET works as charAt operator in Java. Look at that code: http://vbdotnettutor.blogspot.com/2010/10/javas-charati-equivalent-in-vbnet.html


What is operator in java?

An operator is a symbol that does something in Java. for ex: "+" is an arithmetic operator that adds two numbers. ">" is a logical operator that checks if one number is greater than the other. There are many different types of operators in Java like Arithmetic, Logical, Relational and Assignment operators


How do you write c plus plus program to display size of the each data type?

The core if it would contain lines like these: printf ("sizeof (char)=%d\n" "sizeof (short)=%d\n" "sizeof (int)=%d\n" "sizeof (long)=%d\n" "sizeof (long long)=%d\n" "sizeof (size_t)=%d\n" "sizeof (void *)=%d\n" "sizeof (ptrdiff_t)=%d\n" "sizeof (va_list)=%d\n" "sizeof (intptr_t)=%d\n" , (int)sizeof (char) , (int)sizeof (short) , (int)sizeof (int) , (int)sizeof (long) , (int)sizeof (long long) , (int)sizeof (size_t) , (int)sizeof (void *) , (int)sizeof (ptrdiff_t) , (int)sizeof (va_list) , (int)sizeof (intptr_t) );


How do you write java program to times a number?

Java, like many other programming languages, uses the asterisk for the multiplication operator. Therefore, two numbers a and b are multiplied, and their product assigned to a variable r, with this construct: r = a * b;


What is a Call center operator?

A call center operator is a person who works for an answering service. You answer calls for doctors and dentists and the like after hours. They usually are open 24/7 so you work shift work.


Why java does not support friend function?

One of the main goals kept in mind while Java was being developed was that they wanted it to be like C++, but without all the features which make the language overly complex and messy. These features include things like (true) multiple inheritance, operator overloading, and friend functions.


Why ternary operator is not overloaded?

The ternary operator (known as the conditional operator in C++) cannot be overloaded because it is impossible to pass a test operand and two expression operands (either or both of which may be comma-separated) to a function. You can only pass values or references as arguments to a function. Even if it were possible, built-in functions and operators that rely on the conditional operator would likely break. Like all the other operators that cannot be overloaded (sizeof, typeid, ::, . and .*) the results must always be predictable because built-in operators and functions rely on them so heavily.


How do you play old runescape without java?

Just like the new RuneScape, the old one also requires Java to be installed. The game client may provide a workaround, but I don't know whether it works with the old RuneScape game.


Why java's code first converted into byte code instead of directly converted into machine code?

Because that's how java works. There are many other languages (C, for example), that work with direct compilation, and others (like PHP) that are interpreted.


When was Operator - A Girl Like Me - created?

Operator - A Girl Like Me - was created in 2008-11.


Is destructor allowed in java?

No. Java does not support the concept of Destructors like C


Header files in Java programming?

Java does not require header files like C/C++.