Hello guys, i have two methods in a class and want to cal one of them inside another java class something like this : class Y { public void y1 ( ) { } } class X { public void x1 ( ) { } Y.y1 (); }
Oraask Latest Questions
How to convert double to string in java? I have this double variable : double doubleVar=20.8; and i want to convert it to string in java how to achieve this?
hello guys, I have this code that have javascript function and i want to know what is the better way to call it: var colors = {colorName: function() {return this.colorName ;}}var colors2 = {colorName:”Red”} thanks in ...
I have a column with type varchar2 and i want to convert this column into number how can i achieve this in oracle database How to convert varchar2 to number in oracle?
How to insert multiple rows in sql oracle?
I am new to sql and i have a table with name "ACTIONS". what is the command to delete this table from the database? i tried this: delete table ACTIONS but it does not work.
from the question i want to clear java cache in linux?
I have the following set : Set set = new HashSet(); set.add("Yellow"); set.add("Red"); set.add("White"); set.add("Black"); and i want to convert this set to list in java how to do it easily.
What is large pool? and it's optional or required memory area in oracle database ?
What is database normalization and its types? any help will be appreciated