Java, C, C++, C#, Python Compared

preview_player
Показать описание
🔥 PREMIUM DEVELOPER MENTORING PROGRAM:

🔥 CODER'S CAREER PATHS WEBINAR - FREE 29 MINUTE VIDEO:

🔥 LIZARD WIZARD KOMODO - TRANSFORMATIONAL MIND TRAINING:

*************

WEB HOST PAYS FOR YOUR WEB DESIGN TRAINING IN 2021:

POPULAR & EASY CODING COURSES:

*************

🦎 Lizard Wizard Course:

📚 BOOKS TO READ:
… Complements Studioweb courses on HTML5, CSS3 and JavaScript.

✉️ STAY IN CONTACT:
Stef's social links:

Stef's business channel:

👉 GOOGLE REVIEW:
Leave a Google review about Stef.

READ MY GOOGLE REVIEWS:

MY MOUSE & KEYBOARD:

SUPPLEMENTS THAT WORK AMAZING FOR ME:

Protein Essentials Beef Gelatine Powder:

... Healed my very bad knee. If you have joint problems, this *could do miracles for you.

Webber Naturals 88862 Glucosamine Chondroitin

MY CAMERA GEAR:
Canon C300 Mark 3 Cinema Camera

Thanks!

Stef

#developervlog #developertips #python #javascript #php #html5 #css3
Рекомендации по теме
Комментарии
Автор

Love your videos, thank you for sharing.

oLunatiko
Автор

We greatly appreciate these daily streams!

noobyxd
Автор

I'm novice to the industry. Thank you for plain explanation.

vitaliuk
Автор

I think of expressive as being able to accomplish different tasks in many different ways. In Ruby, everything is an object. That makes it flexible. Python. No. You are restricted to how you write code. Even JavaScript is more expressive than Python. But you can get in trouble because of the expressiveness. In normally one way to write code. Decorators :)

nathansire
Автор

Code verbosity really isn't that much an issue imo if you have a good IDE.

conorburke
Автор

Actually in order to write hello world all you need to do is print "psvm" then "sout" and then "hello World" :)

MrMDanny
Автор

16:46 that c example of hello world wont run. the code missed an "int " before "main"

anupbarua
Автор

Thanks, I will join your discord if I may

joelincz
Автор

LINQ writes your SQL statements. Tis good.

joehiker
Автор

In the beginning of the vid you went through the Java sample saying what the syntax was indicating. That was cool, maybe for some live streams instead of going through an article or whatever, go through some code. I'm not saying explain it in detail but more like chat about examples of quirks of a language, how you might have done something different, maybe something impressive will come up, maybe something comedy bad... Could be a cool change of pace, but still laid back, still lots of opportunity for Q&A. I know you are a big PHP supporter, so take us through some PHP code and talk through what makes it jive with you. Peace

Jasruler
Автор

that c++ hello world program can be written shorter:
#include <iostream>
int main(){
std::cout<< "Hello World!";
}

anupbarua
Автор

// Java Streams are a response to C# Linq. So you could think of it as C#'s Stream, except it came first, plus it has custom language statements:

using System;
using System.Linq;

var nums = Enumerable.Range(0, 10);
var procecedNums = from n in nums where n % 3 == 0 orderby -n select n * 2;
// var procecedNums = nums.Where(n => n % 3 == 0).OrderBy(n => -n).Select(n => n * 2); // this is equivalent to the above line

foreach (var evenNum in procecedNums) Console.WriteLine(evenNum); // 18 12 6 0

Theraot
Автор

C, C#, Javascript with Nod.js, Kotlin, or Python are the best depending on what you are trying to do.

akin
Автор

It's a good comparison review. My ranks are:
C# (universal) > Python (small scale) > Java (enterprise + well supported) > C (hardware oriented) > C++ (way too complex for professional usage). But I'll suggest to start with Java Script ES6.
Why C#? Here's a simple example to merge txt files:
var path = @“c:/path-to-folder”;

string[] txtFiles = =>
var output = txtFiles.Select(f => File.ReadAllText(f, Encoding.Default)).Aggregate<string>((result, content) => result + content);
File.WriteAllText(path + “/summary.txt”, output, Encoding.Default);

Console.WriteLine(“Text files merged into: {0}”, output); //or other log info

oldclient