有趣的实验 Java和c#中文变量名


有没有试图写这样的代码

Java:
package  novelty.function.test;

public   class  ChinesePrograme {

    
public   static   void   main(String[] args){
        String 中文变量 
=   " english " ;
        System.out.println(中文变量);
    }
}

C#:
using  System;
using  System.Collections.Generic;
using  System.Text;

namespace  ConsoleApplication1
{
    
class  Program
    {
        
static   void  Main( string [] args)
        {
            String 中文变量 
=   " english " ;
            Console.WriteLine(中文变量);
        }
    }
}

是的,这样的代码是可以正确运行的。

在你的程序中有没有考虑使用中文的变量名呢?

你可能感兴趣的:(有趣的实验 Java和c#中文变量名)