Open In App

Type conversion of elements in Julia – oftype() Method

Last Updated : 26 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The oftype() is an inbuilt function in julia which is used to convert a given type of element y(say) into x(say) type of element.

Syntax: oftype(x, y)

Parameters:

  • x: Specified first type of element.
  • y: Specified second type of element.

Returns: It returns the converted type of elements.

Example 1:




# Julia program to illustrate 
# the use of oftype() method
  
# Getting the converted type of elements.
a = 1;
b = 2.0;
println(oftype(a, b))


Output:

2

Example 2:




# Julia program to illustrate 
# the use of oftype() method
  
# Getting the converted type of elements.
a = 1;
b = 2.0;
println(oftype(b, a))


Output:

1.0

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads