Тёмный

#24 Learn about Return Keyword in Java | In Tamil | Java Tutorial Series | Error Makes Clever 

Error Makes Clever
Подписаться 823 тыс.
Просмотров 20 тыс.
50% 1

Welcome back to our Java tutorial series! In this exciting episode, we're into the fascinating world of the 'return' keyword in Java. The 'return' keyword allows us to send back a value from a method to the calling code, unlocking a whole new level of functionality and flexibility in our programs. Join us as we explore how to use the 'return' keyword to pass data back to the caller, handle different types of return values, and understand its role in method execution flow. Whether you're just starting your Java journey or looking to deepen your understanding of fundamental concepts, this video is packed with examples and explanations to guide you every step of the way. Get ready to harness the power of the 'return' keyword and take your Java skills to new heights!
Java in Tamil.
Join our 700K+ Instagram community
www.instagram....

Опубликовано:

 

13 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 42   
@karthikkeyan2676
@karthikkeyan2676 2 месяца назад
Vera level la irukku pro unga teaching method
@HARIVIGNESHSVAURCT
@HARIVIGNESHSVAURCT 5 месяцев назад
Bro sql full course podunga bro
@guruseelan9513
@guruseelan9513 8 дней назад
public class Return { int sum(int a, int b){ return a+b; } String getname(String name){ return name; } public static void main(String[] args){ Return obj = new Return(); int result =obj.sum(2,3); System.out.println(result); String myname =obj.getname("Guruseelan"); System.out.println(myname); } }
@MonavarshaS
@MonavarshaS 4 месяца назад
WAY OF TEACHING IS GOOD BRooo!
@ErrorMakesClever
@ErrorMakesClever 4 месяца назад
Thankyou
@smartandrew2362
@smartandrew2362 3 месяца назад
@@ErrorMakesClever awesome man, god gifted you great knowledge thank him
@rohini14_
@rohini14_ 3 месяца назад
💙
@KumaresanDurairaj-r1z
@KumaresanDurairaj-r1z 17 дней назад
int sum(int j, int k){ int rem = j+k; return rem; } public static void main(String[] args) { Retirn_type save = new Retirn_type(); int reminder = save.sum(23,30); System.out.println(reminder);
@karthikramesh8503
@karthikramesh8503 5 месяцев назад
Bro vera level..... understand ❤❤❤❤
@MMeditz-2710
@MMeditz-2710 5 месяцев назад
Frist like frist comment bro so, wating for your all videos
@tn_wolf_25
@tn_wolf_25 21 час назад
Guys phone number int use pana kudathu long use pananum
@Nandhini-u5z
@Nandhini-u5z Месяц назад
Well explaination broo❤
@ErrorMakesClever
@ErrorMakesClever Месяц назад
Thanks!!
@kannakannan3935
@kannakannan3935 3 месяца назад
eppadi bro program le red line podureenga
@Jenifer-b4l
@Jenifer-b4l 3 месяца назад
package youtube; public class Adress { String getaddress() { return "Kanyakumari"; } public static void main(String[] args) { Adress obj=new Adress(); String ad= obj.getaddress(); System.out.println("Address:"+ad); } }
@jilabikutty0925
@jilabikutty0925 Месяц назад
public class Return{ String getAddress(){ return "1/143, Haji nagar 2nd Street,Kallikkuppam,Ambatur,Chennai-53"; } public static void main(String[] args){ Return ret=new Return(); String s=ret.getAddress(); System.out.println(s); } }
@JANANIVAECstudent
@JANANIVAECstudent 26 дней назад
package limited; public class addition { int sum(int n1,int n2) { int total = n1+n2; return total; } public static void main(String args[]){ addition scan = new addition(); int total = scan.sum(20,20); System.out.println(total); }} anna inda program correct ah nu check pani slunga
@MANOJSURK21CS120
@MANOJSURK21CS120 Месяц назад
package MJ; import java.util.Scanner; public class returnwithstring { static String Name(String a){ String c=a; return c; } static String Address(String a) { String c=a; return c; } static int Phone(int a) { int c=a; return c; } public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc=new Scanner(System.in); System.out.println("enter the name: "); String x=sc.nextLine(); System.out.println("enter the address: "); String y=sc.nextLine(); System.out.println("enter the Phone NO: "); int z=sc.nextInt(); String name=Name(x); String add=Address(y); int phn=Phone(z); System.out.println(name); System.out.println(add); System.out.println(phn); sc.close(); } }
@nallarasu5085
@nallarasu5085 2 месяца назад
class hi { void div(int num1,int num2) { System.out.println(num1/num2); } void multi(int num1,int num2) { System.out.println(num1*num2); } void sub(int num1,int num2) { System.out.println(num1-num2); } public static void main(String[] args) { hi nal=new hi(); nal.div(12,3); nal.multi(45, 2); nal.sub(69, 35); } }
@Code_With_Gowtham
@Code_With_Gowtham 4 месяца назад
// Online Java Compiler // Use this editor to write, compile and run your Java code online public class hello { int sum (int a ,int b){ int c = a*b; return c; } public static void main(String[] args) { hello multi = new hello(); int d = multi.sum(10,5); System.out.println(d); } }
@jkstudio4807
@jkstudio4807 2 месяца назад
public class prog1{ String getname() { return "Raj"; } String getphone() { return "I am a iphone user"; } String getaddress() { return "I am from Chennai"; } public static void main(String args[]) { prog1 pro = new prog1(); String My_Name = pro.getname(); System.out.println("The Name which Retun Is :"); System.out.println(My_Name); String My_phone = pro.getphone(); System.out.println("The Phone Which Return is :"); System.out.println(My_phone); String My_Address = pro.getaddress(); System.out.println("The Address Which Return is :"); System.out.println(My_Address); } }
@nvsbflims4624
@nvsbflims4624 5 месяцев назад
Bro Sql full course podunga
@smartandrew2362
@smartandrew2362 3 месяца назад
aldready potrukaru bro
@nvsbflims4624
@nvsbflims4624 3 месяца назад
@@smartandrew2362 Thank you bro
Далее
Synchronized Keyword in Java | Tamil | code io
12:18
Просмотров 19 тыс.