骆昊的技术空间

希望能够通过这片小天地与朋友们交流编程、科研、教学方面的心得体会!


开发经验:15年

个人爱好:象棋、国际象棋、乒乓球

目前学历:博士

目前职业:互联网、移动互联网、职业教育

腾讯微博:http://t.qq.com/jackfrued

电子邮箱:[email protected]

感兴趣的研究方向:

Computer Network (计算机网络)/ Internet(因特网) / NGI(下一代互联网) / IOT(物联网) / 

Network Measurement(网络测量) / Routing & Switching(路由和交换)/ Machine Learning(机器学习)

擅长的开发语言:

Java / C / C++ / C# / JavaScript / Python / Objective-C / Swift 

持续关注的技术:

Algorithm(算法)/ Design Pattern(设计模式) / Refactor(代码重构)/ QA & QC(质量保证和质量控制)/ Big Data(大数据)/ Agile Development(敏捷开发)/ Enterprise Application Architecture(企业应用架构)

C:

#include 

int main() {
    printf("Hello, CSDN!\n");
    return 0;
}

Java:

class Hello {
	public static void main(String[] args) {
		System.out.println("Hello, CSDN!");
	}
}

C++:

#include 

int main(int argc, const char * argv[]) {
    std::cout << "Hello, CSDN!" << std::endl;
    return 0;
}

C#:

using System;

namespace HelloApp {

    class Program {
        static void Main() {
            Console.WriteLine("Hello, CSDN!");
        }
    }
}
JavaScript (Browser):


	
		
		 
	

	
	

JavaScript (Node.js):

console.log('Hello, CSDN!');

Python 2.x: 

#!/usr/bin/python
# -*- coding: utf-8 -*-
print 'Hello, CSDN!'
Python 3.x  

print('Hello, CSDN!')

Objective-C:

#import 

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        NSLog(@"Hello, CSDN!");
    }
    return 0;
}
Swift:
print("Hello, CSDN!")


你可能感兴趣的:(程序语言)