常用线切割机床术语的英汉对照

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用线切割机床术语的英汉对照相关的知识,希望对你有一定的参考价值。

如die, punch, approach等的中文怎么说,谢谢!!

参考技术A die 冲模
punch 冲孔
approach 这个词不好直译,我给你一堆词,你自己翻吧

CNC 5-coordinate milling-boring machine 五坐标数控铣镗床
CNC abrasive belt surface-grinding machine 数控砂带平面磨床
CNC abrasive line cut-off machine 数控砂线切割机床
CNC angular approach cylindrical grinding machine 数控端面外圆磨床
CNC automatic multi-slide lathe 数控自动多轨车床
CNC automatic riveting machine 数控自动铆接机
CNC automatic turning machine 数控自动车床
CNC bar loading magazine 数控杆料进料匣
CNC bed-type horizontal milling machine 数控工作台不升降卧式铣床
CNC bed-type milling machine with travelling column 数控立柱移动工作台不升降铣床
CNC bed-type vertical milling machine 数控工作台不升降立式铣床
CNC chucking lathe 数控卡盘车床
CNC controller 数控控制器
CNC coordinate measuring machine 数控坐标测量机
CNC copy milling machine 数控仿形铣床
CNC deep hole boring machine 数控高效深孔镗床
CNC deep-hole drilling & boring machine 数控深孔钻镗床
CNC double column jig boring machine 数控双柱坐标镗床
CNC double spindle lathe 双轴数控车床
CNC double-column vertical turning & boring mill 数控双柱立式车床
CNC electrical discharge machine 数控电火花加工机床
CNC electrode grinding machine 数控电极磨床
CNC electrolytic tool and cutter grinder 数控电解工具磨床
CNC external cylindrical angular plunge-cut grinder 数控斜角全面进磨式外圆磨床
CNC floor-type milling & boring machine 落地式数控铣床
CNC formed cylindrical grinder 数控成形外圆磨床
CNC front loaded machine 数控前载机车床
CNC gear hard finishing machine 数控齿轮精加工机床
CNC grinder for external thread 数控外螺纹磨床
CNC grinder for internal thread 数控内螺纹磨床
CNC grinding machine 数控磨床
CNC heavy turning machine 数控重型车床
CNC heavy-duty horizontal lathe 数控重型卧式车床
CNC high speed double-wheel angular approach cylindrical grinding machine 数控高速双砂轮端面外圆磨床
CNC high speed turret milling machine 数控高速转塔铣床
CNC horizontal broaching machine 数控卧式拉床
CNC horizontal milling & boring machine 数控卧式铣镗床
CNC horizontal surface grinding machine with rectangular table 数控卧式矩台平面磨床
CNC hydraulic press brake 数控液压折弯机
CNC internal grinding machine for bearing ring 数控轴承套圈内圆磨床
CNC internal thread grinding machine 数控内圆端面磨床
CNC jig grinding machine 数控坐标磨床
CNC knee type horizontal milling machine 数控卧式升降台铣床
CNC knee type vertical milling machine 数控立式升降台铣床
CNC laser processing machine 数控激光加工机
CNC lathe 数控车床
CNC milling cutter 数控铣刀
CNC milling machine 数控铣床
CNC movable single column vertical turning & boring mill 数控单柱移动式立式车床
CNC oblique cutting cylindrical special grinding machine 数控斜切外圆专用磨床
CNC planer horizontal milling and boring machine 数控刨台卧式铣镗床
CNC planer type milling machine 数控龙门铣床
CNC race grinding machine for ball bearing inner ring 数控轴承内圈沟磨床
CNC race grinding machine for ball bearing outer ring 数控轴承外圈沟磨床
CNC ram-type milling machine 数控滑枕式铣床
CNC roll grinder 数控轧辊磨床
CNC shearing machine 数控剪板机
CNC single column jig boring machine 数控单柱坐标镗床
CNC single column vertical turning & boring mill 数控单柱立式车床
CNC slant-bed turning machine 数控斜式车床
CNC sliding headstock auto-lathe 数控纵切车床
CNC special purpose milling machine 数控专用铣床
CNC tap grinding machine 数控丝锥磨床
CNC three dimensional measuring machine 数控三维测量机
CNC tool profile grinding machine 数控工具曲线磨床
CNC tube bending machine 数控弯管机
CNC turning machine 数控车床
CNC turning tool 数控车刀
CNC turret punch press 数控冲模回转头压力机
CNC turret punching press 数控冲模回转头压力机
CNC turret vertical miller 转塔式数控立式铣床
CNC twin-spindle chucker-type turning machine 数控双轴卡盘式车床
CNC universal milling machine 数控万能铣床
CNC universal tool milling machine 数控万能工具铣床
CNC vertical external broaching machine 数控立式外拉床
CNC vertical turning machine 数控立式车床
CNC water cutting machine 数控水力切割机
CNC wire-cut electric discharge machine 数控电火花线切割机床
CNC wire-cut machine 数控线切割机床
CNC-camshaft milling machine 数控凸轮轴铣床
CNC-turn-broaching machine 数控车拉两用床
CND precision guideway grinder 数控精密导轨磨床

导入英汉文本,用字符串切割,泛型集合存储的英汉字典

 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace 导入英汉文本,用字符串切割,泛型集合存储的英汉字典
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        Dictionary<string, string> dic = new Dictionary<string, string>();
        private void Form1_Load(object sender, EventArgs e)
        {
            //窗体加载的时候
            //创建一个字典
            //读取文件
            string[] lines= File.ReadAllLines("1.txt",Encoding.Default);
            //遍历每一行
            for (int i = 0; i < lines.Length; i++)
            {
               string[]words= lines[i].Split(new char[]{ }, StringSplitOptions.RemoveEmptyEntries);
                //把中文意思合并
               string chinese = "";
               for (int j = 1; j < words.Length; j++)
               {
                   chinese += words[j];//合并中文意思
               }
               if (!dic.ContainsKey(words[0]))//判断字典中是否有这个单词,
               {
                   dic.Add(words[0],chinese);//如果没有这个单词就把该单词和意思加到字典中
               }
               else
               {
                   //该单词在字典中已经存在了,
                   dic[words[0]] += chinese;
               }
             

            }
        }

        private void btnOk_Click(object sender, EventArgs e)
        {
            //从第一个文本框中取出英文单词
            
            //判断这个单词在字典中是否存在,如果存在则显示中文意思
            if (dic.ContainsKey(txtEnglish.Text.ToLower()))
            {
                txtChinese.Text=dic[txtEnglish.Text.ToLower()];
            }
            else
            {
                txtChinese.Text = "字典中没有收录该单词";
            }
            
            //如果不存在则提示该单词字典中没有收录

        }
    }
}

 

以上是关于常用线切割机床术语的英汉对照的主要内容,如果未能解决你的问题,请参考以下文章

小学数学常用词汇英汉对照

学习编程语言感觉英语很烦吗?编程术语英汉对照大全送给你!

请各位达人能给我物理,化学,生物这些课程里头名词术语 的英汉对照,跪在地上求达人了~~~~!!!

软件测试常用术语(中英文对照)

超干货!软件测试常用术语(中英文对照),测试员必备!

求财金英语专业术语,英汉都要有的